/*
  Primary Blue 005CB9
  Secondary Blue 77A6D4
  Button Outline 5190CE
  Error State Red D0011B
  Text Dark Gray 575859
  Arrow Medium Gray 979797

  Field Label: Roboto Regular, Primary Blue 12pt
  Field Input Text: Robot Regular, Text Dark Gray, 18pt
  Body Copy: Robot Regular, Text Dark Gray, 14pt / 18pt line height
  Button: Robot Medium, White, 18pt. Fill: primary blue, border: button outline. 216px x 46px
 */

html{
  background-color: #424255;
  color: white;
}

body{
  padding:0;
  margin:0;
  font-family: 'Roboto', sans-serif;
}

.header{
  background-color: #A7A9AC;
  margin:0 auto;
  padding:.7em 0 .5em 0;
  text-align: center;
  width:100%;
  border: 1px solid #979797;
}

.error{
  text-align:center; 
  color: #D0011B;
}

.tm{
  font-size: 10pt;
  top: 7pt;
  vertical-align: text-top;
  font-weight: normal;
  position: relative;
}

p{
  width:90%;
  margin:0 auto 2em auto;
  text-align: center;
  color: #575859;
  font-size: 14pt;
  line-height: 18pt;
}

a{
  color: #adb0b3;
}

h1, h2{
  text-align:center;
}

h1{
  margin: 0.4em 0 0 0;
  font-size: 48pt;
  font-family: 'Roboto-Medium', sans-serif;
}

h2{
  font-size: 14pt;
  line-height: 14pt;
  color: #f4f6f8;
  margin: 0px 0 2.4em 0;
  font-family: 'Roboto-Medium', sans-serif;
}

form{
  width:90%;
  margin:0 auto;
  background-color: white;
  padding: 1.8em .5em .8em .5em;
}

label, input, .button-wrapper{
  width:90%;
  margin:0 auto;
  display:block;
}

label{
  text-transform: uppercase;
  font-size: 12pt;
  color: #005CB9;
  margin-bottom:.2em;
}

input{
  font-size: 18pt;
  color: #595859;
  margin-bottom:1.5em;
  border:0;
  border-bottom: 2px solid #5190CE;
}

button{
  display: block;
  font-size: 18pt;
  color: white;
  background-color: #005CB9;
  border:2px solid #5190CE;
  width: 216px;
  height:46px;
  text-align: center;
  margin:0 auto;
}