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

html {
    background-color: #eee;
}

body {
    font-family: museo-sans, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #1a1a1a;
    font-weight: 100;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: #00a4ef;
    text-decoration: underline;
}

a:hover {
    color: green;
}

.container {
    display: flex;
    -webkit-display: box;
    -moz-display: box;
    -ms-display: flexbox;
    -webkit-display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    padding: 6%;
    margin: 0;
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    margin-bottom: 10px;
}

.logo-subtitle {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    flex-direction: row;
    margin-bottom: 30px;
}

._statusMessageHelper,
form {
    background-color: #FFF;
    padding: 2em;
    padding-bottom: 1em;
    margin-bottom: 20px;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0px 1px 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

._statusMessageHelper {
	padding: 2em;
	width: 400px;
}

.status-message {
	width: 100%;
	word-break: break-word;
}

form .fields-container {
    width: 100%;
    padding: 0 0.2em;
    margin-bottom: 20px;
}

form label {
    font-size: 14px;
}

form input, 
form select {
    color: #384047;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1em;
    margin-bottom: 1em;
    width: 100%;
}

form input:focus, 
form select:focus {
    outline: none;
}

.button, 
input[type="submit"] {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: #1a1a1a;
    background-color: #FDB924;
    width: 100%;
    border: none;
    padding: 0.5em;
    margin-top: 1em;
    margin-bottom: 1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 200ms ease-in-out;
}

.button:hover, 
input[type="submit"]:hover,  
input[type="submit"]:focus{
    background-color: #d6940a;
}
input[type="submit"]{
    border-radius: 0;
}
.button span {
    position: relative;
    z-index: 1;
}

.button .circle {
    position: absolute;
    z-index: 0;
    background-color: #35A556;
    border-radius: 50%;
    transform: scale(0);
    opacity: 5;
    height: 50px;
    width: 50px;
}

.button .circle.animate {
    animation: grow .5s linear;
}

@keyframes grow {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.forgot-password,
.form-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
}

.hidden{ display: none; }
.error { color: #b10000; }
.status { color: #0088c6; }