:root {
    --primary-color: #486F88;
    --success-color: #16D090;
}

body {
    margin: 0;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
}

.custompage .limiter {
    width: 100%;
    margin: 0 auto;
}
.custompage .container-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f2f2f2;
}
.custompage .wrap-login {
    background: #fff;
    border-radius: 10px;
    padding: 30px 45px;
    box-shadow: 0 12px 26px rgba(16, 30, 115, 0.06);
}
.custompage .width-login {
    width: 390px;
}
.custompage .width-register {
    width: 690px;
}
.custompage h3.title, legend {
    font-weight: 900;
    font-size: 24px;
    color: #486F88;
    padding: 1rem 0;
}
.custompage label {
    color: #486F88;
    font-weight: 400;
}
.custompage .form-control,
.custompage .bootstrap-select .dropdown-toggle.btn-default {
    border: 2px solid #B3C8D7;
}
.custompage .last-password {
    padding: 2.5rem 0 !important;
    text-align: center !important;
    margin-top: 5px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);;
    text-transform: uppercase;
    font-weight: bold;
}
.btn-success {
    color: #fff;
    background-color: var(--success-color);
    border-color: var(--success-color);
    text-transform: uppercase;
    font-weight: bold;
}
.custompage .software-name {
    text-align: center;
    padding: 2rem 0;
    margin-top: 1rem;
    display: inline-block;
    width: 100%;
    font-size: 12px;
}


.container-custom-login {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #1c3d5a;
    line-height: 0.9;
}

.left-box {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 30px;
    max-width: 300px;
    width: 30%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    margin-right: -50px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.h1-text {
    font-size: 21px;
    color: #fff;
}

.h2-text {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.p-text {
    margin: 10px 0;
    font-size: 12px;
    color: #fff;
}

.label-text {
    margin-top: 8px;
    font-size: 11px;
    color: #fff;
}

.cta-button {
    background-color: #3f78d2;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    font-size: 12px;
}

form {
    display: flex;
    flex-direction: column;
}

.input-login {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #333;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
}

.forgot-password {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.forgot-password:hover{
    color: #333;
}

.right-box {
    background: linear-gradient(45deg, rgba(32,98,152,1), rgba(106,82,128,1) , rgba(170,100,123,1));
    width: 60%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
}

.right-box img {
    max-width: 100%;
    max-height: 100%;
    /* border-radius: 10px; */
}

.link-color-login{
    color: white;
}

@media (max-width: 768px) {
    .container-custom-login {
        flex-direction: column;
    }

    .left-box {
        width: 80%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .right-box {
        width: 80%;
        height: 60vh;
        display: none
    }
}