@font-face {
  font-family: "Roboto";
  src: url("Roboto-Regular.ttf") format("truetype");
}

body{
    background-image: url("../img/bg.jpg");
    background-size:cover;
    background-repeat: no-repeat;
    font-family: "Roboto";
}
#container{
    width:400px;
    margin:auto;
    margin-top:10%;
    padding: 30px;
    border: 1px solid #f1f1f1;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    text-align: center;
    
    border-radius: 8px;
}

#container h1{
    width: 38%;
    margin: 0 auto;
    padding-bottom: 10px;
    color:#0177c1;
}

form{
    text-align: left;
}

/* Full-width inputs */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
input[type=submit] {
    background-color: #0177c1;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: 1px solid #0177c1;
    cursor: pointer;
    width: 100%;
    
    border-radius: 4px;
}
input[type=submit]:hover {
    background-color: white;
    color: #0177c1;
    border: 1px solid #0177c1;
}

#container a{
    text-decoration: none;
    color:black;
}

#container a:hover{
    color:#0177c1;
}