﻿
.login-title {
    color: #1E146E;
    font-size: 28px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.login--code {
    color: #1E146E !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-decoration-line: underline;
    cursor: pointer;
    margin-bottom: 8px;
}

.login-code-header {
    display: flex;
    justify-content: end;
}

.input-container {
    position: relative;
    margin-bottom: 20px;
}

.input-container:nth-of-type(3) {
    margin-bottom: 12px !important;
}

.login-input {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.23);
    color: rgba(0, 0, 0, 0.87);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.login-input-invalid {
    outline: none;
    border: 1px solid #FA5252 !important;
    color: #FA5252 !important;
}

    .login-input-invalid:focus {
        border: 2px solid #FA5252 !important;
    }

    .login-input-invalid::placeholder {
        color: #FA5252 !important;
    }


.login-svg {
    position: absolute;
    top: 25px !important;
    right: 20px;
}

.label-error {
    color: #FA5252 !important;
}

.login--errorMessage {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    margin-top: 3px;
    color: #FA5252;
    margin-left: 10px;
}

.login-password {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.remember {
    position: absolute;
    top: 4px;
    left: 30px;
    color: #343A40;
    font-size: 14px;
    cursor: pointer;
}

input[type="checkbox"] {
    position: relative;
    cursor: pointer;
}

input[type="checkbox"]:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -2px;
    left: -2px;
    border-radius: 5px;
    border: 1px solid #484343;
    background: #f9f9f9;
}

input[type="checkbox"]:checked:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: -2px;
    left: -2px;
    background-color: #1E146E;
}

input[type="checkbox"]:checked:after {
    content: "";
    display: block;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0px;
    left: 5px;
}

a {
    color: #1E146E !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-decoration-line: underline;
    cursor: pointer;
}

.login-button[type="button"] {
    height: 54px;
    border-radius: 12px;
    border: 1px solid #1E146E;
    background: #1E146E;
    color: #fff;
    cursor: pointer;
    width: 100%;
    padding: 11px 26px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 33px;
}

    .login-button[type="button"]:disabled {
        background: #ADB5BD;
        border: 1px solid #F9F9F9;
        color: #F9F9F9
    }

    .login-button[type="button"]:enabled:hover {
        border: 1px solid rgb(26, 74, 122);
        background: #170F53;
    }

.text-center {
    position: absolute;
    margin: auto;
    top: 45%;
    z-index: 9;
    left: 45%
}

.input-container .floating-label.login-label {
    top: 26px;
}

.input-container .form-input:focus + .floating-label.login-label,
.input-container .form-input:not(:placeholder-shown) + .floating-label.login-label {
    top: 5px;
}

.input-container .form-input:not(:placeholder-shown) + .floating-label.login-label {
    color: rgb(0,0,0,0.6);
}

.login-input:focus:not(.application-form-input-invalid) {
    border-color: #1E146E;
}

.login-input.application-form-input-invalid:not(:focus) {
    color: #FA5252;
}

.login-input:not(:focus) {
    border-width: 1px!important;
}

.login-input:focus {
    border: 2px solid #1E146E;
    outline: none;
}
.login-application {
    position: absolute;
    width: 100%;
    background-color: #D2D0E2;
    height: 50px;
    border-radius: 0px 0px 19px 19px;
    right: 0px;
    margin-top : 25px;
}
.login-application-desc{
    display: flex;
    justify-content: center;
    padding : 10px;
}

.login-application-desc span{
    font-size : 14px;
    font-weight : 400;
}

    .login-application-desc a {
        font-size: 14px;
        font-weight: 400;
        text-decoration : underline !important;
        color : #13146E !important;
    }

