

@font-face {
  font-family: 'TWKLausannePan';
  src: url('nopathsource/67dd7d513168f4f6b71959dd_TWKLausannePan-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWKLausannePan';
  src: url('nopathsource/67dd7d513168f4f6b71959dc_TWKLausannePan-400Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TWKLausannePan';
  src: url('nopathsource/67dd7d513168f4f6b71959ee_TWKLausannePan-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWKLausannePan';
  src: url('nopathsource/67dd7d513168f4f6b71959da_TWKLausannePan-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWKLausannePan';
  src: url('nopathsource/67dd7d513168f4f6b71959e0_TWKLausannePan-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TWKLausannePan';
  src: url('nopathsource/67dd7d513168f4f6b71959ef_TWKLausannePan-700Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
input, button, select, textarea { font-family: inherit; font-size: inherit; }
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear { display: none; }
input::-webkit-credentials-auto-fill-button { visibility: hidden; }
input[type="password"]::-webkit-textfield-decoration-container { display: none; }

body {
  font-family: 'TWKLausannePan', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #232323;
  background: #f6f6f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #023d4b; text-decoration: none; }
a:hover { text-decoration: underline; color: #01242d; }



.auth-header {
  background: #ffffff;
  border-bottom: 1px solid #d4d4d4;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.auth-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #232323;
}

.auth-header__logo svg  { height: 24px; width: auto; }
.auth-header__logo-img  { height: 24px; width: auto; display: block; }

.auth-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.auth-header__support {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #232323;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.auth-header__support:hover { color: #023d4b; text-decoration: none; }

.auth-header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  background: none;
  padding: 4px 0;
  cursor: pointer;
  font-size: 13px;
  color: #232323;
  font-weight: 500;
  font-family: inherit;
}
.auth-header__lang:hover { color: #023d4b; }


.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 40px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 1px 4px rgba(2, 61, 75, 0.06);
}

.auth-card__title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 28px;
  color: #232323;
}


.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #232323;
}

.form-label .required { color: #cb1a27; margin-left: 2px; }
.form-group.is-error .form-label { color: #cb1a27; }

.form-hint {
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 4px;
}

.form-input {
  width: 100%;
  height: 40px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  padding: 0 12px;
  font-family: 'TWKLausannePan', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.15s;
  background: #ffffff;
  color: #232323;
}

.form-input:focus { border-color: #023d4b; box-shadow: 0 0 0 1px #023d4b; }
.form-input.is-error { border-color: #cb1a27; }
.form-input.is-error:focus { box-shadow: 0 0 0 1px #cb1a27; }


.input-wrapper { position: relative; }
.input-wrapper .form-input { padding-right: 40px; }

.input-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #909090;
  display: flex;
  align-items: center;
}
.input-toggle:hover { color: #023d4b; }


.phone-wrapper {
  display: flex;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  overflow: visible;
  position: relative;
  transition: border-color 0.15s;
}

.phone-wrapper.is-error { border-color: #cb1a27; }
.phone-wrapper.is-focus { border-color: #023d4b; box-shadow: 0 0 0 1px #023d4b; }

.phone-country {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-right: 1px solid #bdbdbd;
  cursor: pointer;
  background: #ffffff;
  white-space: nowrap;
  font-size: 13px;
  min-width: 76px;
  border-radius: 4px 0 0 4px;
}
.phone-country img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

.phone-country__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #6a6a6a;
  border-bottom: 1.5px solid #6a6a6a;
  transform: rotate(45deg);
  margin-top: -3px;
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
  height: 40px;
  border: none;
  padding: 0 12px;
  font-family: 'TWKLausannePan', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  background: #ffffff;
  min-width: 0;
  color: #232323;
  border-radius: 0 4px 4px 0;
}


.country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 200;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  width: 240px;
  box-shadow: 0 6px 20px rgba(2, 61, 75, 0.12);
  display: none;
}
.country-dropdown.is-open { display: block; }

.country-search { padding: 8px; border-bottom: 1px solid #ececec; }
.country-search input {
  width: 100%;
  height: 32px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  color: #232323;
}
.country-search input:focus { border-color: #023d4b; }

.country-list { max-height: 180px; overflow-y: auto; }

.country-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  color: #232323;
}
.country-option:hover,
.country-option.is-selected { background: #ebfbfe; }
.country-option img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }


.forgot-password {
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 6px;
}
.forgot-password a { color: #023d4b; }
.forgot-password a:hover { color: #01242d; text-decoration: underline; }


.auth-btn {
  width: 100%;
  height: 44px;
  background: #023d4b;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.15s;
  letter-spacing: 0.1px;
}
.auth-btn:hover { background: #01242d; }
.auth-btn:active { background: #01242d; }


.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #6a6a6a;
}
.auth-switch a { color: #023d4b; font-weight: 500; }
.auth-switch a:hover { color: #01242d; text-decoration: underline; }


.error-box {
  background: #fff3f3;
  border: 1px solid #f5c6c6;
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 16px;
  display: none;
}
.error-box.is-visible { display: block; }

.error-box__title {
  font-size: 13px;
  font-weight: 600;
  color: #cb1a27;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.error-box__msg { font-size: 13px; color: #6a6a6a; }


.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #cb1a27;
  margin-top: 5px;
}
.field-error.is-visible { display: flex; }

.field-error__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #cb1a27;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #023d4b;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 3px;
}
.checkbox-group label { font-size: 13px; color: #232323; cursor: pointer; line-height: 1.5; }
.checkbox-group label a { color: #023d4b; }
.checkbox-group label a:hover { color: #01242d; text-decoration: underline; }

.password-hint {
  font-size: 12px;
  color: #6a6a6a;
  margin-top: 5px;
  line-height: 1.5;
}


.auth-footer {
  text-align: center;
  padding: 20px 16px;
  font-size: 12px;
  color: #6a6a6a;
  flex-shrink: 0;
}
.auth-footer a { color: #023d4b; }
.auth-footer a:hover { text-decoration: underline; color: #01242d; }
