:root{
    --affiliBlue:#0065B3;
    --affiliRed:#E61030;
    --hoverColor:#0082e6;
    --defaultFont:Helvetica Neue,Arial,sans-serif;
    --textColor:#2A2F45;
    --borderColor:#e4e4e4;
    --white:#ffffff;
}

html, body {
    overflow: auto;
    min-height:100%;
    overflow-y:scroll;
    margin: 0;
}

input { border: 1px solid #e4e4e4; }

.flexRow{
    display:flex;
    flex-direction: row;
}
.flexColumn{
    display: flex;
    flex-direction: column;
}
.flexFill{
    flex:1;
}

.flexCenter{
    justify-content: center;
}


#section1{
    flex:1;
    height:100%;
    display: flex;
    flex-direction: column;
}
#section2{
    width:500px;
    height:100%;
}

#section3{
    flex:1;
    height:100%;
}

#bodyBase{
    min-height:100%;
    height:100vh;
}

#stripeSection1{
    height: 140px;
    margin-bottom: 100px;
}

#stripeSection2{
    height: 140px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
}
#logoImageBox{
    width:42px;
    height:42px;
}

#logoSection{
    margin-top: 20px;
}

#affiliText {
    height: 54px;
    width: 120px;
    color: var(--textColor);
    margin-left: 20px;
}

#loginBox {
    background: white;
    border-radius: 20px;
    width: 100%;
    height: 365px;
    margin-top: 40px;
    filter: drop-shadow(0 0 30px #e4e4e4);
    border:solid 1px #e4e4e4;
    display:flex ;
    flex-direction: column;
}
#signInText {
    letter-spacing: -.2px;
    color: var(--sail-gray700);
    font-family: Helvetica Neue,Arial,sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin: 20px;
    color: var(--textColor);
}
.loginInput{
    height:40px;
    margin:20px;
    margin-top: 0;
}

.inputLabel{
    margin-left: 20px;
    font-family: var(--defaultFont);
    font-size: 14px;
    color:var(--textColor);
    margin-bottom: 3px;
}

button {    
    color:var(--white);
    background-color: var(--affiliBlue);
    border:none;
    border-radius: var(--borderRadius);
    cursor: pointer;
}

button:hover{
    background-color: var(--hoverColor);
}

button:disabled{
    background-color: #003965;
    color:black;
    cursor: auto;
}

#continueBtn{
    width:350px;
    height:40px;
}

#continueBtnRow{
    margin-top:10px;
}

.link{
    color:var(--affiliBlue);
    cursor: pointer;
}
#forgotPassword{
    margin-right:20px;
}

#signupRow{
    margin-top: 30px;
}
#signup{
    margin-left: 3px;
}