/* Shared Auth Styles (used by Login + Register) */

.auth-page {
    min-height: 100vh;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    color: black;
    max-width: 562px;
    width: 100%;
    padding: 2.5rem;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.08); */
    background: white;

    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
}

.auth-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* .auth-header p {
  color: rgba(255, 255, 255, 0.85);
} */

/* .form-label {
  color: rgba(255, 255, 255, 0.9);
} */

input.form-control {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    /* color: #fff; */
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
} */

input.form-control:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 2px #a77dfc;
}

.toggle-password {
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.toggle-password:hover {
    opacity: 1;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    width: 35%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* .signup-link a:hover {
  color: #fff;
  text-decoration: none;
} */
.auth-info h1 {
    font-size: 2.3rem;
    line-height: 1.3;
}

.auth-benefits span {
    color: rgba(255, 255, 255, 0.85);
}



@media (max-width: 576px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-left {
        display: none !important;
    }
}