﻿/* Reset */
:root {
    --TopSpaceForLoginPage: 11vh;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login_body {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(180deg, #081420 0%, #0b111d 50%, #120f16 100%);
}

.login_container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
}

/* left side */
.login_left {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 40px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    padding-top: var(--TopSpaceForLoginPage);
    /*padding-left: 70px;*/
    align-items: flex-start;
    overflow: hidden;
    background: linear-gradient(90deg, #030d17 0%, #081420 50%, #081420 100%);
}
.login_left_image {
    position: absolute;
    left: -1px;
    bottom: -40px;
    width: 100%;
}

.login_left-content {
    max-width: 400px;
    position:relative;
    z-index:1;
}

    .login_left-content h2 {
        font-size: 40px;
        color: #fff;
        line-height: 43px;
        margin-bottom: 15px;
        margin-top:0px;
        position:relative;
    }
       
        .login_left-content h2 span svg {
          position:absolute;
          left:0px;
          bottom:-4px;
        }
        .login_left-content h2 span {
            color: #108dff;
            position: relative;
        }

    .login_left-content p {
        font-size: 14px;
        color: #fff;
        line-height: 1.6;
    }

/* Right side */
.login_right {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 550px;
    background-color: #fff;
    border-radius: 20px;
    padding: 55px;
}

    .login-box .logo {
        margin-bottom: 20px;
    }

    .login-box h2 {
        font-size: 28px;
        color: #0d1a42;
        margin-bottom: 5px;
    }

    .login-box p {
        font-size: 14px;
        margin-bottom: 25px;
        color: rgba(0, 16, 66, 0.5);
    }
.login_field_container {
    width: 100%;
    float: left;
    overflow: auto;
    max-height:450px;
}
.login_terms_text {
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 7px;
    background-color: #dcebff;
    margin-bottom: 5px;
} 
.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        font-size: 14px;
        color: #333;
        display: block;
        margin-bottom: 5px;
        font-weight: normal;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        height:50px;
    }
#BtnLogin {
    margin-top:15px;
}
.login_terms_block ul,
.login_terms_block ol {
    padding-left:15px;
}
.acc_ver_height {
    width:100%;
    float:left;
    overflow:auto;
}
.remember-forgot {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-bottom: 0px;
    color: #666;
    justify-content: flex-end;
}
    .remember-forgot label {
        font-weight: normal;
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
        cursor:pointer;
    }
        .remember-forgot label input {
            margin-top:0px;
        }
        .remember_al {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            margin-top: 35px;
            color: #666;
            gap:5px;
        }

    .btn:hover {
        background: #2b6fff;
    }
.inp_icon {
    position:relative;
}
    .inp_icon input {
        padding-left:40px;
    }
    .inp_icon svg {
        position: absolute;
        left: 13px;
        bottom: 15px;
    }
    .inp_icon label.red {
        font-weight: bold;
        color: red;
        font-size: 11px;
    }
    .login_left_image_device {
        display: none;
    }
.login_terms_block {
    width:100%;
    float:left;
    display:none;
}
.cus-anchor {
    color: var(--LinkTextColorHover) !important;
}
.acc_ver_block > h2 {
    margin-top: 0px;
    margin-bottom: 25px;
}
.login_bright_logo {
    position:absolute;
    left:0px;
    bottom:200px;
}








@media(max-width: 900px) {
    .login-box {
        float:left;
        padding:15px;
    }
    .login_body {
        display: unset;
        width: 100%;
        float: left;
        overflow-x: hidden;
        overflow-y: auto;
    }
        .login_container {
            display: block;
            float: left;
        }
    .login_left-content {
        width: 100%;
        float: left;
        background-color: #081420;
    }
        .login_left, .login_right {
            border-radius: 0;
            flex: none;
        }

    .login_left {
        padding: 30px 20px;
        text-align: center;
        display:unset;
        width:100%;
        float:left;
    }
        .login_left_image {
          display:none;
        }
    .login_left_image_device {
        display:block;
        width:100%;
        float:left;
    }
    .login_right {
        padding: 15px !important;
        margin: 0px 20px;
        margin-top: -143px;
        display: unset;
        width: calc(100% - 40px);
        float: left;
        position: relative;
        border-radius: 30px 30px 0px 0px;
        margin-bottom: 45px;
    }
    .login-box .logo,
    .login-box h2,
    .login-box p {
        text-align: center;
    }
}
