﻿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;
}


.TabHeader {
    cursor: pointer;
    height: 50px;
    width: 40%;
    background-color: #e5e9f0;
    font-size: 18px;
}
    .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: var(--darkblue);
    color: white;
    font-weight: 600
}

.changeTab {
    background-color: white;
    padding: 10px 20px;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer
}

[data-selected=true] {
    background-color: #f2f5fa;
}

.tabContentContainer {
    display: none;
    border-radius: 10px;
    width: 100%;
    background: #f2f5fa;
}

    .tabContentContainer[data-selected=true] {
        display: flex;
    }

#loginContainer_Content {
    width: 50%;
    height: 100%;
    background-color: #f2f5fa;
    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%;
    }
}
