﻿@import url(https://fonts.googleapis.com/css?family=Roboto:300);
/* #0078c3 */
body {
  background: #0078C3;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(right, #0078C3, #11a3ff);
  background: -moz-linear-gradient(right, #0078C3, #11a3ff);
  background: -o-linear-gradient(right, #0078C3, #11a3ff);
  background: linear-gradient(to left, #0078C3, #11a3ff);
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*

    Form

*/
.form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  min-width: 250px; }

input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px; }

button {
  text-transform: uppercase;
  outline: 0;
  background: #0078C3;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer; }
  button:hover, button:active, button:focus {
    background: #11a3ff; }

.message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px; }
  .message a {
    color: #0078C3;
    text-decoration: none; }

h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a1a; }

.input-validation-error {
  border: 1px solid #f79998;
  background: #f9b0b0; }

.field-validation-valid {
  display: none;
  visibility: hidden; }

.field-validation-error {
  display: block;
  background: #f79998;
  color: #FFF;
  margin-top: 10px;
  padding: 5px; }

