﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    background: #b7c4cc;
}

#form1 {
    height: 100%;
    margin: 0;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.login-wrapper {
    width: 100%;
    max-width: 980px;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-box {
    background: #fff;
    padding: 24px 32px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.20);
    text-align: center;
    min-width: 220px;
}

.loading-text {
    margin-top: 15px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.spinner-border.custom-spinner {
    width: 3rem;
    height: 3rem;
}

.loader-gif {
    width: 42px;
    height: 42px;
}

@media (max-width: 991.98px) {
    .login-page {
        align-items: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
