body {

    background: #f4f6fb;

    font-family: Arial, sans-serif;

}

.login-left {

    background:
        linear-gradient(
            rgba(13, 27, 62, 0.85),
            rgba(13, 27, 62, 0.85)
        ),
        url('/static/img/church.png');

    background-size: cover;
    background-position: center;

    position: relative;

    color: white;

}

.login-left-content {

    z-index: 2;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 40px;

}

.login-left-content i {

    font-size: 70px;

}

.login-left-content h1 {

    margin-top: 20px;

    font-weight: bold;

}

.login-box {

    width: 100%;
    max-width: 450px;

    background: white;

    padding: 40px;

    border-radius: 20px;

}

.btn-login {

    height: 50px;

    border-radius: 10px;

    font-weight: bold;

}

@media (max-width: 575.98px) {
    .container-fluid.vh-100 {
        min-height: 100svh;
        height: auto !important;
        padding: 0;
    }

    .login-box {
        max-width: none;
        padding: 28px 22px;
        border-radius: 16px;
        box-shadow: none !important;
    }
}
