@charset "UTF-8";
/* CSS Document */

   body {
        min-height: 100vh;
        background: linear-gradient(135deg, #e9eefa 80%, #a5b8ee 100%);
        background-image: url('../img/bg/bg-login.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .login-box {
        max-width: 410px;
		background: linear-gradient(135deg, #e9eefa 60%, #a5b8ee 100%);
        width: 97%;
        margin: 0 auto;
        padding: 34px 28px 18px 28px;
        border-radius: 18px;
        box-shadow: 0 8px 36px #adb9dd38;
        position: relative;
        z-index: 2;
    }
    .login-logo {
        display: block;
        margin: 0 auto 16px auto;
        height: 58px;
        width: auto;
        object-fit: contain;
        background: linear-gradient(135deg, #e9eefa 60%, #a5b8ee 100%);
        border-radius: 10px;
        box-shadow: 0 1px 6px #e4eaf3;
        padding: 6px 16px;
    }
    .login-title {
        text-align: center;
        font-size: 1.34rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 1.3rem;
        color: #3d4386;
    }
    .footer-btn {
        display: flex;
        justify-content: center;
        margin-top: 22px;
    }
    .footer-btn .btn {
        min-width: 120px;
        font-weight: 500;
    }
    @media (max-width: 700px) {
        .login-box {padding:18px 6vw 12px 6vw;}
        .login-logo {height:38px;}
    }