* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"Open Sans", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(to bottom right, #004aad, #ffffff);

}

.container {
  width: 100%;
  display: flex;
  max-width: 400px;
  background: #fff;
  border-radius: 5px;
}

.login {
  width: 400px;
}
.card{
  background:#0055a6;
}

form {
  width: 720px;
  margin: 60px auto;
  background: #0055a6;
}

h1 {
  margin: 20px;
  text-align: center;
  font-weight: bolder;
  text-transform: uppercase;
}

hr {
  border-top: 3px solid #c1bd34;
}

p {
  text-align: center;
  margin: 10px;
  font-size: 13px;
  color: #fff;
}

form label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding: 5px;
  margin-top: 8px;
  margin-bottom: 0;
  color: #fff;
}
body span{color: #fff}

input {
  width: 100%;
  margin: 2px;
  boder: none;
  outline: none;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid gray;
}

button {
  border: none;
  outline: none;
  padding: 8px;
  width: 100%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 8px;
  color: #fff;
}

.btn.btn-primary{background: rgb(206, 206, 0);}
.forget {
  font-size: 12px;
  margin-top: 16px;
  text-align: right;
}

a {
  text-decoration: none;
  color: #FFFFB9;
}

.signup {
  display: inline;
  margin-bottom: cpx;
}
.signup .btn-secondary{background: #fff; color: #000; border-color: #fff;}
.site-footer{width: 100%;}
.site-footer .container{display:inherit;background: transparent;max-width: 1024px;}
@media (max-width: 767px){
  form{width: 90%}
  }