* {
   font-family: "Roboto", sans-serif;
   box-sizing: border-box;
}

body {
   margin: 0
}

.container {
   border-top: 9px solid #004d99;
   width: 100%;
   height: 100vh;
   
   margin: auto 0;
   display: flex; 
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.main {
   padding: 1rem;
}

.logo {
   width: 100%;
   max-width: 450px;
   margin: 1rem auto;
   display: block;
}

.form input:not([type="submit"]) {
   width: 100%;
   height: 34px;
   border-radius: 9px;
   border: 1px solid #ccc;
   display: block;
   margin: 15px auto;
}

.form input:not([type="submit"])::placeholder {
   color: #ccc;
   font-weight: 900;
}

.form input[type="submit"]:hover {
   cursor: pointer;
   background: #0071b2;
}

.button {
   background: #004d99;
   color: white;
   border: #004d99;
   border-radius: 30px;
   min-width: 152px;
   padding: 12px;
   height: 52px;
   font-weight: 500;
   font-size: 1.3em;
   margin: auto;
   display: block;
}

span.forgot-link a {
   text-decoration: none;
   color: #004d99;
   margin: auto;
   margin-top: 25px;

   font-weight: 600;
   font-size: 0.9em;
   display: block;
   text-align: center;
}

span.connect-robots-link a {
   text-decoration: none;
   color: #004d99;
   margin: auto;
   margin-top: 25px;

   font-weight: 600;
   font-size: 0.9em;
   display: block;
   text-align: center;
}

#email:focus,
#password:focus {
   border: 1px solid #004d99;
   outline-width: 0;
}

input {
   text-align: center;
   text-align: center;
   font-weight: 600;
   font-size: 1.1em;
   color: #5c5c60;
}

.copyright {
   color: #5c5c60;
   position: absolute;
   bottom: 16.6px;
   font-size: 12px;
   font-weight: 400;
   margin: 0px;
   padding: 0px;
   border: 0px;
   left: 0;
   width: 100%;
   text-align: center;
}

.error {
   text-align: center;
   color: #ff533f;
   font-weight: 600;
   font-size: 0.9em;
   padding: 0px;
   padding-bottom: 35px;
   border-bottom: 4px;
}

