/* assets/css/auth.css */
.auth-wrapper {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(0, 212, 255, 0.06), transparent),
                radial-gradient(900px 500px at 90% 90%, rgba(255, 183, 3, 0.03), transparent),
                linear-gradient(180deg, #071029 0%, #07172a 60%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    max-width: 450px;
    width: 100%;
    margin: 20px;
    border-radius: 20px;
    padding: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
}

.auth-card h3 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.auth-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    padding: 12px 15px;
}

.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
}

.auth-card .form-label {
    color: #9fb3d6;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.auth-card .btn-primary {
    background: linear-gradient(90deg, #00d4ff, #6610f2);
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.auth-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 16, 242, 0.4);
}

.auth-card .text-center a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-card .text-center a:hover {
    color: #ffb703;
}

.auth-card .form-control.is-invalid {
    border-color: #ff6f61;
}

.auth-card .form-control.is-valid {
    border-color: #4ade80;
}

.auth-card .invalid-feedback {
    color: #ff6f61;
    font-size: 0.85rem;
}

.auth-card .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9fb3d6;
    z-index: 5;
}

.auth-card .toggle-password:hover {
    color: #fff;
}

/* Background shapes for auth pages */
.auth-bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.auth-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.auth-blob.b1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: linear-gradient(45deg, #00d4ff, #6610f2);
}

.auth-blob.b2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: linear-gradient(45deg, #ffb703, #ff6f61);
}
