.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: 10px;
  margin-top: 5vh;
}

.auth-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.auth-box:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
}

.auth-tabs {
  display: flex;
  margin: -35px -35px 30px -35px;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.tab-btn {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.tab-btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e87f0 0%, #49a5f2 100%);
  transition: width 0.3s ease;
}
.tab-btn.active {
  color: #1e87f0;
}
.tab-btn.active:before {
  width: 100%;
}

.auth-form {
  animation: fadeIn 0.3s ease-in-out;
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 500;
}
.form-group input {
  width: calc(100% - 28px);
  padding: 14px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.9);
}
.form-group input:focus {
  outline: none;
  border-color: #00c9ff;
  box-shadow: 0 0 0 4px rgba(0, 201, 255, 0.1);
  transform: translateY(-1px);
}
.form-group input:focus::-moz-placeholder {
  transform: translateX(10px);
  opacity: 0;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.form-group input:focus::placeholder {
  transform: translateX(10px);
  opacity: 0;
  transition: all 0.3s;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #1e87f0 0%, #49a5f2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(30, 135, 240, 0.2);
}
.submit-btn:disabled {
  background: linear-gradient(90deg, #ccc 0%, #ddd 100%);
  transform: none;
  box-shadow: none;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  width: 100%;
}
.remember-me label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
}
.remember-me input[type=checkbox] {
  width: auto;
  margin: 0;
}

.form-links {
  margin-top: 20px;
  text-align: center;
}
.form-links a {
  position: relative;
  color: #1e87f0;
  text-decoration: none;
  font-size: 14px;
}
.form-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #1e87f0 0%, #49a5f2 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.form-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.error-message {
  background: rgba(254, 226, 226, 0.9);
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 15px;
  backdrop-filter: blur(5px);
}

.agreement-group {
  margin: 20px 0;
}

.agreement-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}
.agreement-label input[type=checkbox] {
  width: auto;
  margin-right: 5px;
}
.agreement-label a {
  color: #1e87f0;
  text-decoration: none;
  font-weight: 500;
}
.agreement-label a:hover {
  text-decoration: underline;
}

.verify-code-input {
  display: flex;
  gap: 10px;
}
.verify-code-input input {
  flex: 1;
}
.verify-code-input img {
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}
.verify-code-input img:hover {
  border-color: #00c9ff;
}

.send-code-btn {
  padding: 0 15px;
  background: linear-gradient(90deg, #1e87f0 0%, #49a5f2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.send-code-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=account.css.map */