﻿@import url("https://fonts.googleapis.com/css?family=Roboto:400");

html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    background: #F4F4F4;
    color: #424242;
}

.containerCard {
    border: 1px solid #676767;
    /* 50px bottom padding to balance extra whitespace in SVG logo */
    padding: 40px 48px 50px;
    margin: 80px auto 0;
    max-width: 448px;
    background: #FFFFFF;
}

.logodiv {
    /* 22px bottom padding is 32px - 10px of extra whitespace in SVG logo */
    margin: 0 auto 22px auto;
    width: 100%;
    max-width: 225px;
}

.logodiv svg {
    display: block;
}

.containerCard form {
    margin-top: 32px;
}

input,
label {
    display: block;
}

.inputGroup label {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 4px;
}

.inputGroup input {
    border: 1px solid #424242;
    padding: 0 8px;
    width: 100%;
    height: 40px;
    font-size: 16px;
    line-height: 30px;
    box-sizing: border-box;
    margin-bottom: 32px;
}


label.error {
    color: #DD372F;
    height: 12px;
    /* Move error back up beneath input */
    margin: -28px 0 16px;
}

input[type=submit] {
    border: 1px solid #0D8484;
    border-radius: 4px;
    padding: 12px 16px;
    width: 100%;
    background: #0D8484;
    color: #FFFFFF;
    line-height: 1;
    cursor: pointer;
}

.links {
    font-size: 14px;
    color: #676767;
    margin-top: 32px;
    text-align: center;
    width:100%;
}

a:link, a:visited, a:hover, a:active {
    color: #6C6A70;
    text-decoration: none;
}

.errorText,
.loginMsgText,
.temporaryMsgText,
#passwordemaillabel,
#usernameemaillabel,
.passwordSuccessText,
.notificationSentText {
    margin: 0 0 16px;
    width: 100%;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

.errorText {
    color: #DD372F;
}

.temporaryMsgText {
    margin: 32px 0 0;
}

.errorEmail {
    margin: 8px 0;
    color: #424242;
}

#passwordemaillabel,
#usernameemaillabel {
    margin-bottom: 32px;
}

.passwordChangeTitleText {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

.passwordRulesHeader,
.passwordRules {
    line-height: 1.5;
    margin-bottom: 16px;
}

.passwordRules {
    padding: 0 0 0 16px;
    margin-bottom: 32px;
}

input:focus,
a:focus {
    outline: 2px dotted #424242;
    outline-offset: 2px;
}

@media screen and (max-width: 480px) {
    body {
        background: #fff;
    }

    .containerCard {
        border: none;
        margin: 0 auto;
        padding: 40px 24px;
    }
}
