﻿body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: Arial;
}

.mainContainer {
    width: 100%;
}

.leftContainer, .rightContainer {
    width: 50%;
    margin: 0 auto;
    min-height: 1200px;
    float: left;
}

.leftContainer {
    background-color: #66DAC7;
}

.rightContainer {
    background-color: #2e4158;
    padding: 25px 40px;
    box-sizing: border-box;
}

    .rightContainer h2 {
        color: white;
    }

.rightButtonsContainer {
    width: 100%;
    overflow: hidden;
}

.rightButtons {
    height: 40px;
    float: right;
    display: flex;
    margin-bottom: 80px;
}

.signIn {
    padding: 10px 25px;
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
}

.signUp {
    padding: 10px 25px;
    cursor: pointer;
    font-size: 18px;
    line-height: 20px;
}

.active {
    background-color: #5ED0C0;
    color: white;
}

.inactive {
    background-color: #4C5D72;
    color: #9DA6B1;
}

#blackScreen {
    width: 5000px;
    height: 100vh;
    background-color: rgb(17, 17, 17);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    opacity: 0.7;
    display: none;
}

#loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #66dac7;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    position: absolute;
    top: 200px;
    left: calc(50% - 60px);
    z-index: 100;
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*.mainButtons {
    display: flex;
    color: #707c8b;
    font-size: 20px;
    margin-bottom: 50px;
    text-align: left;
    box-sizing: border-box;
    height: 50px;
    line-height: 50px;
}*/

.textButton {
    font-size: 28px;
    margin: 0 10px;
    padding-bottom: 5px;
    cursor: pointer;
    display: inline-block;
}

.activeText {
    color: white;
    border-bottom: 1px solid #199087;
}

.activeForm {
    display: block;
}

.form-row {
    width: 100%;
    margin: 20px 10px;
    display: inline-block;
}

    .form-row label {
        width: 100%;
        display: block;
        font-size: 16px;
        color: white;
    }

    .form-row input {
        width: 85%;
        background-color: transparent;
        border: none;
        color: white;
        outline: none;
        border-bottom: 1px solid #445366;
        font-size: 18px;
        font-weight: 300;
        padding-bottom: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
    }

        .form-row input[type=checkbox] {
            width: 16px;
            margin: -2px 10px;
            padding: 0;
        }

    .form-row select {
        background-color: transparent;
        border: none;
        color: #707c8b;
        outline: none;
        border-bottom: 1px solid #445366;
        font-size: 18px;
        font-weight: 300;
        padding-bottom: 10px;
        margin-top: 10px;
        padding: 5px;
        width: 95px;
    }

    .form-row #ContentPlaceHolder1_phone {
        width: calc(85% - 95px);
    }

    .form-row p {
        margin: 2px;
        text-align: center;
        color: #707c8b;
        font-size: 14px;
    }

.inactiveRow {
    display: none;
}

.smallButton {
    background-color: #52C4B9;
    color: white;
    border: none;
    outline: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    min-width: 100px;
    display: inline-table;
    text-align: center;
}

#forgotPassword, #otherSms {
    display: inline-block;
    margin: 10px 0;
    width: 100%;
    text-decoration: underline;
    cursor: pointer;
}

.ui-dialog {
    font-size: 14px;
}

.ui-dialog-titlebar-close {
    display: none;
}

.ui-dialog .ui-dialog-buttonpane button {
    padding: 0 5px;
}

@media screen and (max-width:800px) {
    .leftContainer {
        display: none;
    }

    .rightContainer {
        width: 100%;
        padding: 25px 0;
    }

    .form-row {
        width: 95%;
    }

        .form-row label {
            width: 90%;
        }
}
