*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input::placeholder {
    opacity: 0;
}

html,
body {
    height: 100vh;
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    display: flex;
    flex-direction: row;
    background-color: white;
    background-image: url(../img/bg.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-position-y: bottom;
    background-position-y: 100%;
    background-size: 58%;
}

.left,
.right {
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 10;
}

.right {
    z-index: 11;
}

.right {
    position: absolute;
    right: 0;
    width: 518px;
    overflow-x: hidden;
    overflow-y: auto;
    color: rgba(0, 0, 0, .87);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.502);
    background: #ffffff;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 3rem;
    margin-left: 5rem;
}

.welcome-container>.sanlogo {
    height: 48px;
    width: 168px;
}

.welcome-container>h3 {
    font-size: 56px;
    font-weight: normal;
    line-height: 52px;
}

.welcome-container>h5 {
    border-bottom: 1px solid #000000;
    font-size: 14px;
    margin-left: 0px;
    height: 20px;
    margin-top: 4px;
    font-weight: 400;
    width: 90%;
}

.form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.form>.tabs {
    display: flex;
    flex-direction: row;
    height: 50px;
    gap: 7px;
    margin-bottom: 20px;
    ;
}

.tabs>.t-left,
.tabs>.t-right {
    border-bottom: 3px solid #b1b1b1;
    line-height: 50px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 40px;
    padding-top: 20px;
}

.tabs>.t-left {
    border-bottom-color: #0a6169d9;
}

.tabs-container>.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: #1E1F21;
    gap: 10px;
}

.tabs-container>.header>h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}

.tabs-container>.header>p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
}

.tabs-container .content {
    margin-top: 20px;
}

.field {

    border: 1px solid #B7BEC4;
    border-radius: 6px;
    font-size: 12px;
    width: 400px;
    height: 48px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #4F5457;
    font-family: 'Santander Micro Text', sans-serif;
    margin-bottom: 15px;
    position: relative;
    z-index: 17;
}

.field>input {
    height: 100%;
    width: 100%;
    padding-left: 16px;
    border: 0;
    background-color: transparent;
    outline: 0;
    z-index: 20;
}

.field:focus-within {
    border: 1px solid #257FA4;
}

.field label {
    position: absolute;
    top: 18px;
    left: 15px;
    z-index: 18;
    pointer-events: none;
    transition: top 0.2s ease;
}

.field:focus-within>label {
    top: -7px;
    color: #257FA4;
    background-color: white;
}


.field input:valid~label {
    top: -7px;
}

.eye {
    position: absolute;
    height: 25px;
    width: 25px;
    margin-top: -35px;
    right: 0;
    margin-right: 5px;
    background-image: url("../img/eye.svg");
    background-repeat: no-repeat;
    z-index: 22;
}

.keyboard {
    position: relative;
    height: 20px;
    width: 22px;
    margin-left: -2px;
    background-image: url("../img/keyboard.svg");
    background-repeat: no-repeat;
    cursor: pointer;
}

.keyboard+span {
    margin-left: 3px;
    ;
}

.eye:hover {
    cursor: pointer;
}

.check-field {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.check-field:last-of-type {
    margin-top: 15px;
}



input[type="checkbox"] {
    height: 18px;
    width: 18px;
    appearance: none;
    border: 1px solid #B7BEC4;
    border-radius: 4px;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
    cursor: pointer;
}

input[type="checkbox"]:checked {
    background-color: #257FA4;
}

input[type="checkbox"]+span {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    margin-left: 6px;
}

.keyboard+span {
    color: #257FA4;
    font-weight: 600;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

button {
    position: relative;
    width: 168px;
    height: 40px;
    font-family: sans-serif;
    margin: 50px auto;
    border: none;
    border-radius: 40px;
    background: #ec0000;
    color: #F8F9FA;
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

button:disabled {
    background: #F8F9FA;
    color: #B7BEC4;
}

.text-center {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 11pt;
}

.dont-shar {
    position: relative;
        width: 100%;
        border: 0;
        display: flex;
        flex-direction: row;
/*        align-items: center;*/
/*        justify-content: justify;*/

        margin-top: 15px;
        background: #F3F3F3;
        border-radius: 4px;
        padding: 12px;
        gap: 10px;
}

.check-field>button {
    background: transparent;
    color: rgba(241, 19, 19, 0.903);
}

.check-field>button:hover {
    background-color: #e04e4e32;
}

@media screen and (max-width: 600px) {
    body {
        flex-direction: column;
        gap: 0px;
    }

    .left {
        width: 100%;
        height: 50px;
    }

    .right {
        position: relative;
        width: 100%;
        height: 100%;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.502);
    }

    .right>.form {
        width: 100%;
    }

    .form>.tabs {
        gap: 0px;
    }

    .tabs-container {
        padding: 12px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .tabs>.t-left,
    .tabs>.t-right {
        border-bottom: 3px solid #e72323;
    }

    .tabs>.t-left {
        border-right: 1px solid #989a9c;
    }

    .form .header {
        display: none;
    }

    .form .content {
        margin-top: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .field {
        width: 100%;
        border: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 0.502);
        border-radius: 0px;
        margin-bottom: 5px;
    }

    .field input {
        padding-left: 2px;

    }

    input::placeholder {
        color: rgba(0, 0, 0, 0.502) !important;
        font-size: 11pt;
        opacity: 1;
    }

    input::-moz-placeholder {
        color: rgba(0, 0, 0, 0.502) !important;
        font-size: 11pt;
        opacity: 1;
    }
    input::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.502) !important;
        font-size: 11pt;
        opacity: 1;
    }

    .field:focus-within {
        outline: 0;
        border: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 0.502);
    }

    .field label {
        display: none;
    }

    .welcome-container {
        flex-direction: row;
        gap: 0px;
        margin: 0;
        height: auto;
        justify-content: center;
    }

    .welcome-container h3,
    .welcome-container h5 {
        display: none;
    }

    .suby {
        width: 100%;
        text-align: left;
    }

    .kybo {
        display: none !important;
    }

    .btn-submit button {
        width: 100%;
        color: white;
    }

    .btn-submit button:disabled {

        background-color: #e0dede;

    }

    .dont-shar {
        position: relative;
        width: 100%;
        border: 0;
        display: flex;
        flex-direction: row;
/*        align-items: center;*/
/*        justify-content: justify;*/

        margin-top: 15px;
        background: #F3F3F3;
        border-radius: 4px;
        padding: 12px;
        gap: 10px;
    }

    .dont-shar>svg {
        height: 24px;
        width: 24px;
        max-width: 10%;
        color: #257fa4;
        fill: #257fa4;
    }

    .check-field.kob.text-center {}


    .dont-shar>p {
        max-width: 90%;
        color: #585656;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: -0.08px;
        line-height: 19px;
    }
}

.yep,
.yepsim,
.yepsom {
    display: none;
}

.alert {
    display: none;
    position: absolute;
    flex-direction: column;
    border: none;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150px;
    background-color: rgba(20, 20, 20, .96);
    border-left: 4px solid rgb(162, 32, 32);
    font-size: 14pt;
    padding: 10px;
    color: white;
    gap: 10px;
}

.alert> :first-of-type {
    font-size: 17pt;
}

.loading {
    display: none;
    position: fixed;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 20, 20, .95);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    z-index: 10001;
}

.loading h4 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: whitesmoke;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

.loader::before,
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite;
}

.loader::after {
    border-color: rgba(255, 55, 55, 0.8);
    animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
    inset: 6px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}