@import "./external/reset.css";
@import "./external/owl-theme.css";
:root {
  --default-font: "Montserrat", sans-serif;
  --spacing: 7.5px;
  --b0: #070808;
  --d1: #303336;
  --d4: #a0a6ab;
  --w0: #fff;
  --yellow: #ffde00;
}

/* ==========================================================================
   Main
   ========================================================================== */
html {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--default-font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  border-top: 2px solid var(--yellow);
}
body strong {
  font-weight: 700;
}

/* ==========================================================================
   Form
   ========================================================================== */
.panel__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  .panel__wrapper {
    flex-direction: row;
  }
}

.panel__form {
  width: 100%;
  padding: calc(4 * var(--spacing)) calc(4 * var(--spacing)) 50px;
  box-sizing: border-box;
  background: #191a1a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.panel__form form {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .panel__form {
    width: 375px;
    height: calc(100vh - 2px);
  }
}
.panel__form-header {
  display: flex;
  padding-bottom: calc(2 * var(--spacing));
  margin-bottom: auto;
  align-items: center;
  height: 35px;
  position: fixed;
  top: 10px;
  left: 20px;
  z-index: 20;
}
@media only screen and (min-width: 1024px) {
  .panel__form-header {
    position: relative;
    top: auto;
    left: auto;
  }
}
.panel__form-header-back {
  border-radius: 8px;
  background: var(--d1);
  display: flex;
  width: 40px;
  height: 35px;
  padding: 9px 22px;
  align-items: center;
  justify-content: center;
  margin-right: calc(2 * var(--spacing));
  box-sizing: border-box;
}
.panel__form-content {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(4 * var(--spacing));
}
@media only screen and (min-width: 1024px) {
  .panel__form-content {
    padding-top: 0;
  }
}
.panel__form-content h2 {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 24px */
  letter-spacing: -0.6px;
  color: var(--w0);
  width: 100%;
  font-family: var(--default-font);
  padding-bottom: 10px;
}
.panel__form-content-password {
  position: relative;
}
.panel__form-content-password-visible {
  position: absolute;
  cursor: pointer;
  right: calc(2 * var(--spacing));
  top: 50%;
  transform: translateY(-50%);
}
.panel__form-content input[type=text],
.panel__form-content input[type=password] {
  border-radius: 8px;
  display: flex;
  width: 280px;
  height: 50px;
  padding: 0px 15px;
  align-items: center;
  padding: 0 calc(2 * var(--spacing));
  box-sizing: border-box;
  border: 0;
  background-color: var(--d1);
  margin-top: calc(2 * var(--spacing));
  color: var(--d4);
  font-family: var(--default-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%; /* 16px */
  letter-spacing: -0.4px;
  width: 100%;
}
.panel__form-content input[type=text]:active, .panel__form-content input[type=text]:focus,
.panel__form-content input[type=password]:active,
.panel__form-content input[type=password]:focus {
  outline: 0;
}
.panel__form-content input[type=submit] {
  height: 40px;
  background-color: var(--yellow) !important;
  color: var(--b0);
  text-align: center;
  font-family: var(--default-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.4px;
  border: 0;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  padding: unset;
}
.panel__form-content-login {
  margin-top: calc(4 * var(--spacing));
}
.panel__form-content-create {
  margin-top: calc(4 * var(--spacing));
  text-align: center;
  color: var(--d4);
  font-family: var(--default-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
  height: 28px;
  display: flex;
  align-items: center;
}
.panel__form-content-forgot {
  height: 28px;
  display: flex;
  align-items: center;
}
.panel__form-content a {
  color: var(--w0);
  font-family: var(--default-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.3px;
  text-decoration: none;
  cursor: pointer;
}

.panel__slider {
  width: 100%;
  height: 360px;
}
@media only screen and (min-width: 768px) {
  .panel__slider {
    height: 500px;
  }
}
@media only screen and (min-width: 1024px) {
  .panel__slider {
    position: relative;
    height: calc(100vh - 2px);
    overflow: hidden;
    flex: 1;
  }
}
.panel__slider .owl-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.panel__slider .owl-stage-outer,
.panel__slider .owl-stage,
.panel__slider .owl-item {
  height: 100%;
}
.panel__slider .slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.panel__chat {
  border-radius: 50%;
  background: var(--yellow);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}
.panel__chat img {
  width: 40px;
}
@media only screen and (min-width: 1024px) {
  .panel__chat img {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .panel__chat {
    bottom: 40px;
    right: 40px;
    position: absolute;
  }
}/*# sourceMappingURL=main.css.map */