﻿input {
    box-sizing: border-box;
}

#loginContainer {
    align-items: stretch;
    margin: 40px 0
}

#loginContainer_Inner {
    width: 70%;
}

#loginContainer_Input {
    width: 50%;
}

#loginContainer_Input_Inner {
    padding: 20px 10px;
}
#login-right {
    background-size: cover;
    background-image: url(/images/siteImages/register.png);
    background-repeat: no-repeat;
    background-position: right;
    min-height: 500px;
    border-radius: 50px 5px 50px 10px;
}

.TabHeader {
    cursor: pointer;
    height: 50px;
    width: 40%;
    background-color: #ccc;
    font-size: 18px;
    font-weight:  400;
}
    .TabHeader:nth-child(2) {
        margin-left: 2%
    }


.FormContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    padding: 30px 0;
}

.FormContainerHeadText {
    font-size: 22px;
    font-weight: 600;
    color: var(--darkblue)
}

.btn {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    padding: 10px 20px;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #001100;
    color: white;
    font-weight: 600
}

.changeTab {
    background-color: #000;
    padding: 15px 20px;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
    color:#fff;
}

[data-selected=true] {
    background-color: #f5f5f5;
}

.tabContentContainer {
    display: none;
    border-radius: 10px;
    width: 100%;
    background: #f5f5f5;
}

    .tabContentContainer[data-selected=true] {
        display: flex;
    }

#loginContainer_Content {
    width: 50%;
    height: 100%;
    background-color: #00110036;
    border-radius: 10px;
}

#loginContainer_ContentInner {
    gap: 30px;
    width: 90%;
}

.loginContainerRow {
    display: flex;
    justify-content: center
}

    .loginContainerRow div:nth-child(1) {
        width: 30%
    }

        .loginContainerRow div:nth-child(1) img {
            height: 80px;
        }
    .loginContainerRow div:nth-child(2) {
        width: 70%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 10px
    }
        .loginContainerRow div:nth-child(2) div:nth-child(1) {
            font-weight: 600;
            font-size: 22px
        }


@media (max-width: 768px) {
    #loginContainer_Inner {
        width: 100%;
    }

    #loginContainer_Input {
        width: 100%;
    }
}
