/* SECTION */
.signup {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  background: #241711;
}

.signup .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.signup .logo img {
  width: 300px;

}

/* GLOW */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #C24E2B, transparent);
  filter: blur(120px);
  bottom: -100px;
  top: -100px;
}

/* CONTAINER */
.signup-container {
  display: flex;
  max-width: 100%;
  width: 70%;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.signup-left {
  flex: 1;
  color: #fff;
}

.signup-left h1 {
  font-size: 42px;
  /* text-align: center; */
}

.signup-left p {
  color: #d6c2b9;
}

/* CARD */
.signup-card {
  flex: 1;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 183, 162, 0.2);
}
.signup-card h2{
  text-align: center;
  margin-bottom: 10px;
}

/* INPUT */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 162, 0.3);
  background: transparent;
  color: #fff;
}

/* FLOAT LABEL */
.input-group label {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #aaa;
  transition: 0.3s;
  background: #241711;
  padding: 0 5px;
}

.input-group input:focus+label,
.input-group input:valid+label {
  top: -8px;
  font-size: 12px;
  color: #FFB7A2;
}

/* ERROR */
.error {
  font-size: 12px;
  color: #ff6b6b;
}

/* BUTTON */
.btn-signup {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #C24E2B, #FFB7A2);
  color: #241711;
  font-weight: 600;
  position: relative;
}

/* LOADER */
.loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #241711;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;

  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* PASSWORD STRENGTH */
#strength {
  font-size: 12px;
  margin-bottom: 15px;
}

/* SUCCESS */
#successMsg {
  margin-top: 10px;
  color: #4ade80;
}

/* LOGIN LINK */
.login-text {
  margin-top: 15px;
  color: #ccc;
  text-align: center;
}

.login-text a {
  color: #FFB7A2;
}

/* MOBILE */
@media (max-width: 768px) {
  .signup-container {
    flex-direction: column;
    padding: 20px;
  }
}