/* login_styles.css */

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Reset only for the login page */
body.login-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a2e; /* Fallback color */
    font-family: 'Poppins', sans-serif;
}

/* The Frosted Glass Login Card */
.login-card {
    background: rgba(33, 31, 61, 0.8); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #9060b0;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(150, 100, 200, 0.5);
    text-align: center;
}

.login-card h2 {
    font-family: 'Lobster', cursive;
    color: #ff99cc;
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 153, 204, 0.3);
}

/* Crispy Forms Label Styling */
.login-card label {
    display: block;
    text-align: left;
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Crispy Input Styling */
.login-card .form-control {
    background-color: rgba(51, 51, 77, 0.9);
    color: #fff;
    border: 1px solid #555577;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.login-card .form-control:focus {
    background-color: #33334d;
    border-color: #ff99cc;
    box-shadow: 0 0 8px rgba(255, 153, 204, 0.4);
    color: #fff;
}

/* The Big Birthday-Style Login Button */
.btn-login {
    width: 100%;
    background-color: #9060b0;
    border: none;
    color: white;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #b080d0;
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(180, 130, 220, 0.6);
}