/* Custom CSS for ATR login */
body {background-color: #f2f3f3;color: #5d6071;}

/* Hack to move footer to the bottom of the page */
.body-wrapper {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

/* font-family reset */
body,
h1,
h2,
.auth-method button,
.btn,
.auth-method input, 
input {
    font-family: "Roboto", Arial, Helvetica, sans-serif
}

/* button reset */
.btn, 
.auth-method button {
    background: #0083ba;
    padding: 10px 15px;
    border-radius: 100px;
}

/* color reset */
h1,
h2 {
    color: #0083ba;
    font-weight:300;
}
.error {color: #c91e04;}

/* headings */
h1 {font-size:30px;padding-top:30px}
h2 {font-size:24px;}

/* auth boxes */
.equal-cols > div {
    border:0;
    border-bottom: 2px solid #dbdfe2;
    border-radius: 3px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.045);
    background-color: #fff;
    border-radius: 0.3rem;
    padding: 5px !important; /* no other way of overriding since responsive rules utilize important statement already */
    box-sizing: border-box;
}
@media (max-width: 400px) {
    .equal-cols > div {
        margin:20px 0 !important; /* again! Messy rules from main.css require an important*/
    }
    .usage-conditions {padding:0 10px;margin:10px 0}
}

/* inputs */
.auth-method input {
    font-size: 14px;
    background-color: #fff;
    background-image: none;
    color: #495057;
    line-height: 1.25;
    padding: 0.375rem 0.75rem;
    box-shadow:none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 2px solid #dbdfe2;
    border-radius: 5px;
}
.auth-method input:focus {
    border-color: #9d9fb4;
    outline: 0;
    color: #34394c;
}

/* logos to footer */
footer {
    position: relative;
    bottom: 0;
    background:#fff;
    padding-top:20px;
    border-top: 2px solid #9d9fb4;
    margin-top:40px
}
