﻿
.layout {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #F8F9FA;
}

.layout-header {
    width : 100%;
    height: 50px;
    background: #FFFFFF;
    border-bottom: 1px solid #F1F3F5;
    padding: 8px 50px;
}

.layout-header__old_portal svg {
     fill: white;
     width: 24px;
     height: 24px;
}

.layout-header__old_portal a {
    color: white !important;
    text-decoration: underline;
    font-size: 14px;
}

.layout-login {
    display: flex;
    justify-content: center;
    flex: 1;
    gap: 50px;
    padding-top: calc(10% - 100px);
}

@media screen and (max-width: 1150px) {
    .layout-login {
        flex-direction: column-reverse;
        align-items: center;
    }
    .layout-login--form{
        margin-bottom: 50px;
    }
    .layoutCards {
        margin-bottom: 50px;
    }
}

.layout-login--form {
    width: 397px;
    max-width: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 19px;
    border: 1px solid #f9f9f9;
    position:relative;
    height:100%;
}

.layout-header__language {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    gap: 10px;
}

    .layout-header__language span {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        line-height: 18px;
        cursor: pointer;
    }

        .layout-header__language span:hover {
            font-size: 18px;
        }

.layout-header__language--border {
    height: 23px;
    width: 1px;
    background-color: #fff;
}

.contactUs {
    background: #5EADA9;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(90deg);
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: 50%;
    right: -35px;
}

    .contactUs span {
        font-size: 14px;
        font-weight: 600;
        line-height: 18px;
        color: #fff;
        margin-top: 1px;
        margin-right: 5px;
    }

.contactUs-close {
    background: #3a96a5;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: rotate(90deg);
    position: absolute;
    border-radius: 0px 0px 10px 10px;
    top: 50%;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    border-radius: 19px;
    background: #fff;
    width: 473px;
    box-shadow: 0px 4px 14px 0px rgba(23, 39, 73, 0.05);
    border: 1px solid #f9f9f9;
    padding: 30px;
    margin:auto;
    margin-top:20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    text-align:right;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

@media screen and (max-width: 1150px) {
    .contactUs {
        right: -20px;
    }
}