﻿
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,500,600|Asap:400|Roboto:400");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Lato", Helvetica;
}

.page {
    height: 100vh;
    width: 100vw;
    font-family: "Lato", Helvetica;
}

.form-container {
    width: 460px;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 30px;
}

.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.color-grey-1 {
    color: #555555;
}

.color-grey-2 {
    color: #666666
}


input {
    font-size: 1rem;
    outline: none;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 10px;
    color: gray;
    width: 400px;
    height: 36px;
    margin: 10px 0px;
}

label {
    font-size: 1rem;
    color: gray;
    pointer-events: none;
}

.input-group {
    padding-bottom: 10px;
}

button {
    align-items: center;
    background-color: #d93030;
    margin-bottom: 10px;
    border: none;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 41px;
    width: 100%;
}

.button-group {
    display: flex;
    width: 100%;
}

    .button-group button {
        margin: 5px;
    }


a {
    font-family: "Lato", Helvetica;
    color: #D93030;
    font-weight: 600;
    text-decoration: none;
}

.form-img {
    height: 40px;
    width: 260px;
}

.consent-form {
    width: 100%;
}

.form-message {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.form-heading {
    font-family: Lato;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    padding: 10px 0px
}

form {
    padding: 10px 0px;
}

#password-validation-list {
    margin-bottom: 10px;
}

.error-container {
    top: 0px;
}

.fp-form-heading {
    padding: 20px 0px;
}