.auth-page {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(78, 201, 176, 0.05) 0%, transparent 70%);
  animation: authGlow 8s ease-in-out infinite alternate;
}
.auth-page::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(78, 201, 176, 0.03) 0%, transparent 70%);
  animation: authGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes authGlow {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(15deg) scale(1.1);
  }
}
.auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(78, 201, 176, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 5;
  overflow: hidden;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(78, 201, 176, 0.1);
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  position: relative;
}
.auth-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #4ec9b0;
  transition: width 0.3s ease;
}
.auth-tab:hover {
  color: rgba(255, 255, 255, 0.7);
}
.auth-tab.active {
  color: #4ec9b0;
  background: rgba(78, 201, 176, 0.03);
}
.auth-tab.active::after {
  width: 60px;
}

.auth-form-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 35px 30px;
  box-sizing: border-box;
  animation: formAppear 0.4s ease-out;
}

@keyframes formAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.auth-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
  font-family: "Inter", sans-serif;
  position: relative;
  padding-bottom: 12px;
}
.auth-form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ec9b0, transparent);
  border-radius: 2px;
}

.auth-form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.auth-form-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
}

.auth-form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(30, 30, 30, 0.7);
  border: 1px solid rgba(78, 201, 176, 0.12);
  border-radius: 10px;
  font-size: 15px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.auth-form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.auth-form-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.auth-form-input:focus {
  outline: none;
  border-color: #4ec9b0;
  box-shadow: 0 0 0 3px rgba(78, 201, 176, 0.1);
  background: rgba(40, 40, 40, 0.9);
}

.auth-form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #4ec9b0, #3aa88a);
  color: #000000;
  margin-top: 5px;
}
.auth-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 201, 176, 0.25);
}
.auth-form-submit:active {
  transform: translateY(0);
}

.auth-form-code-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(78, 201, 176, 0.25);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(78, 201, 176, 0.08);
  color: #4ec9b0;
}
.auth-form-code-btn:hover {
  background: rgba(78, 201, 176, 0.15);
}
.auth-form-code-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.auth-error {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 54, 54, 0.12);
  border: 1px solid rgba(255, 54, 54, 0.25);
  color: #ff6b6b;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 13px;
  z-index: 100;
  backdrop-filter: blur(10px);
  text-align: center;
  animation: errorSlide 0.4s ease-out;
  font-family: "Inter", sans-serif;
  max-width: 90vw;
}

@keyframes errorSlide {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}/*# sourceMappingURL=auth.css.map */