@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,700&display=swap');

a, body {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

body {
    color: #353535;
}

a, a:hover, a:focus, a:hover, a:active {
    text-decoration: none;
    color: #3399CB;
}

.app-setup a, .bare-link {
    color: #353535;
    text-decoration: underline;
}

/* accessibility */
*:focus {
    outline: 2px solid #21BEF3;
}
label {
    user-select: none;
}

html, body.loginPage {
    background-color: #F7F8FC;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

h3.login-title {
    color: #353535;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0;
}

.navbar-inner {
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.content-container {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.loginContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    gap: 15px;
    width: 339px;
    background: #FEFEFE;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.11);
    border-radius: 2px;
}

.two-factor-prompt-container {
    width: 600px;
    padding: 36px;
}


.form-horizontal {
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

label.form-label {
    display: block;
    height: 16px;
    font-family: Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #353535;
    margin-bottom: 4px;
}

input.span12 {
    box-sizing: border-box;
    display: flex;
    flex: 1;
    padding: 8px;
    gap: 4px;
    height: 33px;
    background: #FFFFFF;
    border: 1px solid #CED7E2;
    border-radius: 4px;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 14px;
}
input.span12.error {
    border: 1px solid #F45B68;
    outline: none;
}
input.span12.error:focus {
    outline: 2px solid #F45B68;
}
label.error {
    color: #F45B68;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: 3px 0;
}

button[type=submit] {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-self: end;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    width: 100%;
    height: 32px;
    background-color: #21BEF3;
    border-radius: 4px;
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    border: 0;
    color: #FFFFFF;
    cursor: pointer;
}
button[type=submit]:active {
    background-color: #2C95D4;
}
button[type=submit]:focus {
    outline: 2px solid #2C95D4;
}

form.form-horizontal {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.actions {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.show-password-container {
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: center;
}
.show-password-container label {
    margin-left: 5px;
}

.password-actions {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    padding: 5px 0;
}
.support-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
}
.alt-login-text {
    margin-bottom: 5px;
}

.notification {
    background-color: #E2EEFF;
    text-align: left;
    padding: 10px 20px;
    border: 1px solid #D0E3FF;
    border-radius: 3px;
    font-size: 14px;
    color: #353535;
    margin-bottom: 15px;
}
.notification > .title {
    text-align: left;
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
}
.notification.success {
    background-color: #EFFFF2;
    border: 1px solid #ACE8CB;
}
.notification.error {
    background-color: #FFEFF0;
    border: 1px solid #FFD4D9;
}

#code-form label.error {
    display: block;
}
