﻿
body:has(.login-layout) {
    background: url("/images/background-gradient.png") no-repeat !important;
    background-size: 40% !important;
    background-color: var(--primary-color) !important;
}

.login-box {
    /*width: 410px;*/
    width: clamp(330px, 80vw, 430px);
    margin: 7% auto;
    background-color: #fff;
/*    padding: 30px 0px;*/
    border-radius: 30px;
}

.login-box .logo{
    width: 80px;
}

    .login-box form {
        padding: 10px 40px 20px 40px;
    }

.login-title {
    font-size: 20px;
    color: #2C364A;
    font-weight: 500;
    margin: 10px 0px;
}

.login-link {
    color: var(--warning-color) !important;
    font-weight: 500;
    text-decoration: underline;
}

.captchaImage {
    display: flex;
    border: 1px dashed #1F4397;
    border-bottom: 0;
    padding-top: 10px;
    margin: 10px 10px 0 12px;
    width: 93%;
}

.captchaImage img{
    margin:auto;
}
    /*Auth Layout Style*/
    .mia-auth-container {
    display: flex;
    width: 100%;
    height: 100vh;
    margin: 0;
    background-color: #fff;
    overflow: hidden;
}

.mia-auth-left {
    width: 75%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mia-auth-body {
    width: 100%;
    max-width: 500px;
    margin-right:300px;
}

.mia-auth-right {
    width: 25%;
    background-image: url("/assets/images/bgImages/gradient 2-03 1.png");
    background-color: #1F4397;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mia-login-vector {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45rem;
}

.generate-btn{
    background-color:#1F4397 !important; 
    color:#fff !important;
    width: 30px;
    height: 30px;
}

.login-btn{
    width: 100% !important;
    background-color: #0f3da9 !important;
    font-size: 13px;
}

.register-type-btn{
    width: 100%;
    border: 1px solid #0f3da9 !important;
}

.register-type-btn:hover{
    /*background: #e6f5ff !important;*/
    border: 1px solid #6a7fb0 !important;
    box-shadow: 0 4px 12px rgba(106, 127, 176, 0.35);
}

/* ------------------- Responsive ------------------- */
@media (max-width: 1170px) {
    .mia-login-vector {
        width: 40rem;
    }
}

    @media (max-width: 995px) {
        .mia-auth-container {
            flex-direction: column;
            height: auto;
        }

        .mia-auth-right{
            display:none;
        }

        .mia-auth-left {
            width: 100%;
            height: auto;
        }

        .mia-auth-right {
            height: 200px;
        }

        .mia-auth-body {
            max-width: 90%;
            margin: 30px auto;
        }

        .mia-login-vector {
            width: 20rem;
        }
        body{
            background : #fff;
        }
    }

    /* Mobile portrait */
    @media (max-width: 576px) {
        .mia-auth-right {
            height: 150px;
        }

        .mia-login-vector {
            display: none;
        }
    }

