    /* Login */

    .login-wrapper {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        /* Card container */
        .login-card {
            background: #fff;
            width: 360px;
            padding: 35px;
            border-radius: 14px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .login-card h2 {
            text-align: center;
            margin-bottom: 25px;
            font-weight: 600;
            color: #333;
        }

        .btn-login {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: #667eea;
            color: white;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
        }

        .btn-login:hover {
            background: #5a67d8;
        }

        .form-errors {
            background: #ffe6e6;
            color: #b30000;
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .login-footer {
            text-align: center;
            margin-top: 18px;
            font-size: 14px;
            color: #666;
        }

        .login-footer a {
            color: #667eea;
            text-decoration: none;
        }

    /* Registration */
    .register-wrapper {
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

    .register-card {
        background: #fff;
        width: 360px;
        padding: 35px;
        border-radius: 14px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .register-card h2 {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 600;
        color: #333;
    }

    .input-field {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 15px;
        transition: 0.2s;
    }

    .input-field:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    }

    .btn-register {
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 8px;
        background: #667eea;
        color: white;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: 0.2s;
    }

    .btn-register:hover {
        background: #5a67d8;
    }

    .form-errors {
        background: #ffe6e6;
        color: #b30000;
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .register-footer {
        text-align: center;
        margin-top: 18px;
        font-size: 14px;
        color: #666;
    }

    .register-footer a {
        color: #667eea;
        text-decoration: none;
    }

    /* Add comment */


/* Google Login */

/* .divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider span {
    margin: 0 10px;
    color: #888;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-weight: 500;
}

.btn-google img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
} */











/* Divider (OR line) */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(108, 99, 255, 0), #ccc, rgba(108, 99, 255, 0));
}

.divider span {
    margin: 0 12px;
    color: #888;
    font-weight: 500;
    font-size: 14px;
}

/* Google Login Button */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
}

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

/* Hover effect for Google button */
.btn-google:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Active (click) effect */
.btn-google:active {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}












/* Google Login */



.google-auth-wrapper{
    margin:0;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
    background:linear-gradient(135deg,#eef2ff,#f8fafc);
}

.google-auth-card{
    background:white;
    padding:40px 45px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
    width:360px;
}

.google-auth-title{
    margin-bottom:10px;
    font-size:22px;
    font-weight:600;
    color:#1f2937;
}

.google-auth-text{
    color:#6b7280;
    font-size:14px;
    margin-bottom:30px;
}

.google-auth-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:100%;
    padding:12px 16px;
    font-size:15px;
    font-weight:600;
    border-radius:10px;
    border:1px solid #e5e7eb;
    background:white;
    cursor:pointer;
    transition:all 0.25s ease;
}

.google-auth-button:hover{
    background:#f9fafb;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.google-auth-button:active{
    transform:scale(0.98);
}

.google-auth-logo{
    width:20px;
}

.google-auth-loading{
    opacity:0.7;
    pointer-events:none;
}


