﻿body {
    background-image: url('/bgImage/pnguot.jpg'); /* Optional background */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

main {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    padding: 40px;
    width: 90%;
    max-width: 800px;
}

#title {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

#loginForm, #socialLoginForm {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

label {
    color: white;
}

p a {
    color: white;
}

.btn-outline-dark {
    width: 100%;
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 768px), (max-width: 576px){
    #socialLoginForm{
        margin-top:4px;
    }
}