﻿#MainContainer {
    width: 900px;
    margin-bottom:30px;
}

#loginContainer {
    align-items: stretch;
    margin: 10px 0
}

.TabHeader {
    cursor: pointer;
    height: 50px;
    background-color: #f2f5fa;
    font-size: 16px;
    padding: 20px;
}

    .TabHeader:not(:first-child) {
        margin-left: .5%
    }

[data-selected=true] {
    background-color: #e5e9f0;
}

.tabContentContainer {
    display: none;
    width: 100%;
    background: #e5e9f0;
}

    .tabContentContainer[data-selected=true] {
        display: flex;
    }

.LoginFormContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 10px;
    width: 100%
}

.LoginFormContainerHeader {
    font-size: 22px;
    font-weight: 600;
    color: var(--darkblue)
}



.FQAItemHeader {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    border-top: 1px solid #80808047;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 10px;
    cursor: pointer;
}

    .FQAItemHeader:first-child {
        border-top: none;
    }

    .FQAItemHeader img {
        height: 20px
    }

.FQAItemContent {
    display: none;
    padding: 10px 10px 30px;
    line-height: 1.4;
    font-style: italic;
}

.FQAItemHeader img {
    transition: all 0.6s;
}

.ArrowRotate {
    transform: rotate(90deg);
}


@media(max-width: 768px) {
    .TabHeader {
        cursor: pointer;
        height: 50px;
        background-color: #f2f5fa;
        font-size: 16px;
        padding: 10px;
    }

    [data-selected=true] {
        background-color: #e5e9f0;
    }
}
