body {
   
    font-family: 'Playfair Display', serif;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.6); /* white transparent overlay */
    z-index: -1;
}
.customBG{
    background-color: #003366; 
}
.customBG:hover{
    background-color: #0dcaf0; 
    
}


.btn-google {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #444;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}
.btn-google:hover {
    background-color: #f8f9fa;
    border-color: #bbb;
}
.btn-google img {
    height: 20px;
    margin-right: 8px;
}
.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}
.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}
.divider::before {
    left: 0;
}
.divider::after {
    right: 0;
}
.divider span {
    background: #fff;
    padding: 0 10px;
    color: #888;
    font-size: 0.9rem;
}

/* Ensure card fits in mobile */
@media (max-width: 576px) {
    body {
        background-attachment: scroll; /* prevent weird zooming on mobile */
    }

    .container {
        padding: 15px;
        align-items: flex-start !important; /* don’t vertically center, start from top */
    }

    .card {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .card-body {
        padding: 20px;
    }

    h3 {
        font-size: 1.4rem;
    }
}
