.inputContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#inputField {
  border: 2px solid white;
  background-color: transparent;
  border-radius: 10px;
  padding: 12px 6px;
  color: black;
  font-weight: 500;
  outline: none;
  caret-color: rgb(155, 78, 255);
  transition-duration: .3s;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.userIcon {
  position: absolute;
  fill: rgb(155, 78, 255);
  width: 12px;
  top: -23px;
  left: -15px;
  opacity: 0;
  transition: .2s linear;
}

.usernameLabel {
  position: absolute;
  top: -25px;
  left: 5px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
  transition: .2s linear;
  opacity: 0;
}

#inputField:focus ~ .usernameLabel,
#inputField:valid ~ .usernameLabel {
  transform: translateX(20px);
  opacity: 1;
}

#inputField:focus ~ .userIcon,
#inputField:valid ~ .userIcon {
  transform: translateX(20px);
  opacity: 1;
}

#inputField:focus,
#inputField:valid {
  background-color: #ddd;
  transition-duration: .3s;
}
.auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#1F4F46 ,#245d52 ,#2a6b5f,#358778);
}

.auth-box {
    background: rgba(30, 48, 44, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    width: 90%;
    max-width: 420px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    text-align: center;
    animation: fadeIn 0.6s ease;
    color: white;
}

.auth-box h2 {
    margin-bottom: 8px;
    color: #FACC15;
    font-size: 32px;
    font-weight: 800;
    text-transform: none;
}

.auth-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

.auth-box input {
    width: 90%;
    padding: 16px 20px;
    margin-bottom: 18px;
    border-radius: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.auth-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.auth-box input:focus {
    border-color: #1abc9c;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.1);
}

/* BUTTON */
.auth-box button {
    width: 95%;
    padding: 16px;
    border: none;
    border-radius: 15px;
    background: #1abc9c;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.auth-box button:hover {
    background: #16a085;
    transform: scale(1.02);
}

/* LINKS */
.auth-links {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.auth-links a {
    color: #FACC15;
    text-decoration: none;
    font-weight: bold;
}

#forgotPasswordLink {
    color: #FACC15 !important;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GOOGLE LOGIN BUTTON */
.google-login-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

