/*** CECO/CPSC Quick Apply / Pre Screen Authorization Layout ***/

/*
    Tints of blue from darkest to lightest
    #1365B0
    #3A78BA
    #568CC4
    #729FCE
    #8FB2D7
    #ABC5E1
    #C7D8EB
    #E3ECF5
*/

html {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-weight: normal;
    height: 100%;
    width: 100%;
    background-color: #E3ECF5;
}
#container {
    height: calc(100% - 1rem);
    width: calc(100% - 1rem);
    background-color: #FFFFFF;
    border: 2px solid #1365B0;
    margin: auto;
    overflow: auto;
    font-size: 1rem;
}
.logo {
    width: 35%;
    margin: 1.5rem;
}
#logoHeader {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}
.textHeading {
    font-size: 1.5rem;
    text-align: center;
    width: calc(100%-2rem);
    padding: 1rem;
}
.textBody {
    font-size: 1rem;
    text-align: justify;
    width: calc(100%-2rem);
    padding: 1rem;
    margin-bottom: 0.5rem;
}
.textBodyNoMargin {
    font-size: 1rem;
    text-align: justify;
    width: calc(100%-2rem);
    padding: 0 1rem;
}

#applyForm {
    width: calc(100%-2rem);
    padding: 2rem;
    text-align: center;
}
.insideLabel {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: 1.5rem;
    height: 3rem;
    width: 90%;
    color: #000;
    font-style: normal;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.insideLabel::placeholder {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: 1.5rem;
    color: #729FCE;
    font-style: italic;
}
.insideBlurb{
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: 1.5rem;
    text-align: left;
    margin-left: 9%;
    width: 90%;
    color: #000000;
    font-style: italic;
    margin-bottom: 1rem;
}
.nextButton {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: 2.5rem;
    padding: 1rem;
    color: #568CC4;
    border-color: #1365B0;
    border-radius: 15px;
    margin-top: 1rem;
}
.smallerButton {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: 1.5rem;
    padding: 1rem;
    color: #568CC4;
    border-color: #1365B0;
    border-radius: 15px;
    margin-top: 1rem;
}
#authTable {
    width: 100%;
    font-size: 1.25rem;
    text-align: left;
}
#authTable td {
    padding: 0.5rem;
    vertical-align: bottom;
}
.authField {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: 1.25rem;
    width: 100%;
    color: #999999;
    padding-left: 0.5rem;
}
.authFieldShrink {
    font-family: system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';
    font-size: .75rem;
    width: 100%;
    color: #999999;
    padding-left: 0.5rem;
}

#Checkbox_1 {
    width: 2rem;
    height: 2rem;
}
.outlined {
    border: solid 2px #000000;
}
.error {
    width: 100%;
    color: red;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
.errorHighlight {
    border: 1px solid #E74C3C !important;
    background-color: #F5B7B1 !important;
}
.blueLine {
    padding-top:5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 2px solid #1365B0;
}
.red {
    color:red;
}
.white {
    color:white;
}
.bold {
    font-weight: bold;
}
.center {
    text-align: center;
}
.s1 {
    font-size: 1rem !important;
}
.s1a {
    font-size: 1.25rem !important;
}
.s2 {
    font-size: 2rem;
}
.s4 {
    font-size: 4rem;
}
.w100p {
    width: 100%;
}
@media only screen and (min-width: 768px){
    #container {
        max-width: 900px;
    }
    #logoHeader {
        font-size: 2rem;
    }
    .textHeading {
        font-size: 1.5rem;
    }
    .nextButton, .insideLabel, .smallerButton {
        font-size: 2rem;
        height: 5rem;
    }
    .error {
        font-size: 2rem;
    }
    .authFieldShrink {
        font-size: 1.25rem;
    }
}