.__login_container {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

.__side_login {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    padding-top: 0px;
    background-color: #ffffff;
    max-width: 500px;
}

.__login_form {
    width: 100%;
    max-width: 380px;
}

.__logo_login {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #c1c1c110;
}

.__logo_login img {
    width: auto;
    height: auto;
    max-height: 70px;
    margin-bottom: 10px;
    border: none;
    outline: none;
}

.__login_form h3 {
    font-size: 1.2rem;
}

.__login_form p.subtitle {
    font-size: 0.9rem;
    color: #666;
}

.__form_login {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.__box_forget_password {
    display: flex;
    justify-content: flex-end;
    margin-top: -6px;
    margin-bottom: 16px;
}

.__box_forget_password a {
    font-size: 12px;
    color: var(--primary-600);
    text-decoration: underline;
}



.__main_btn {
    cursor: pointer;
}

.__main_btn.enter {
    width: 100%;
    min-width: 100px;
    height: 45px;
    margin-bottom: 16px;
    border-radius: 0.6rem;
    border: none;
    padding: 0px 25px;
    outline: none;
    outline-style: none;
    font-size: 1rem;
    color: #FFF;
    background-color: var(--primary-600);
}

.__main_btn.enter:hover {
    background-color: var(--primary-900);
}

.copyright {
    font-family: 'Inter-Light', sans-serif;
    font-size: 12px;
    text-align: center;
    color: #97A3B9;
}

.copyright a {
    color: #065FCA;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.register {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #6b7280;
}

.register a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}







.branding-wrapper {
    flex: 1.5;
    flex-direction: column;
    display: flex;

    background: url("../images/photo-1554284126-aa88f22d8b74.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    z-index: 10;
}

.branding-wrapper::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(14, 74, 177, 0.95) 30%, rgba(32, 201, 151, 0.68));

    position: absolute;
    z-index: 100;
}

.branding-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;
    text-align: center;
    color: #fff;

    z-index: 1000;
}

.branding-content h2 {
    width: auto;
    max-width: 60%;
    font-family: 'JakartaSans', sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2rem;
}

.branding-content p {
    max-width: 450px;
    margin-top: 10px;
    padding: 10px 20px;
    font-family: 'JakartaLight', sans-serif;
    font-size: 1.6rem;
    line-height: 1.3;
}

.space-container {
    width: 100%;
    height: 300px;
    background-color: springgreen;
}

@media (max-width: 900px) {
    .branding-wrapper {
        display: none;
    }

    .__side_login {
        max-width: 100%;
    }
}
