
body{  
    background-color: #F2EDE7;  
    font-family: "Roboto", sans-serif;
    font-weight: 200;
}

header{
    height: 100px;
  }
  
  header img{
    margin: 0 auto;
    display: block;
    width: 150px;
  }

h1 {
    font-size: 30px;
    font-weight: 200;
    text-align: center;
    /*letter-spacing: 1px;*/
    margin: 10px 0;
}

h2 {
    font-size: 22px;
    font-weight: 200;
    text-align: center;
    margin: 20px 0;
}

h3 {
    font-size: 16px;
    font-weight: 200;
    text-align: center;
    margin: 10px 0 30px;
}

a{
    text-decoration: none;
    color: #1A5AD8;
    font-weight: 300;
}

#errorText{
    color: #f01f33;
    font-size: 20px;
    font-weight: 300;
    text-align: center;    
}


.form-wrap{
    width: 35%;
    max-width: 600px;
    min-width: 400px;
    margin: 0 auto;
}

input[type=text], input[type=name], input[type=password], input[type=email] {
    width: 100%;
    padding: 12px 0;
    margin: 10px 0 30px;
    display: inline-block;
    border: none;
    border-bottom: 2px solid white;
    box-sizing: border-box;
    background: transparent;
    outline: none;

    font-family: "Roboto";
    font-size: 24px;
    opacity: 1;
    color: black;
    font-weight: 300;

    -webkit-transition: border-bottom 0.4s ease-in-out;
    transition: border-bottom 0.4s ease-in-out;
}

.submitButton {
    width: 200px;
    background-color: #1A5AD8;
    color: white;
    padding: 12px 16px;
    margin: 15px auto 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    font-size: 24px;
    opacity: 1;
    font-weight: 300;
    text-transform: uppercase;

    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}