*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Baloo Bhai 2', sans-serif;
}

button, a, input, select, textarea {
  font-family: 'Baloo Bhai 2', sans-serif;
}

.container{
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #091D31, #124766);
}

.container .card-login{
  width: 420px;
  height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #58778B;
  box-shadow: #091d318f 0 3px 3px 3px;
  border-radius: 30px;
  background: linear-gradient(to top, #0A1F30, #0E324C);
}

.card-login .content-logo{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;
}

.content-logo img{
  width: 250px;
  margin-bottom: 20px;
}

.content-logo h1{
  font-weight: 900;
  font-size: 35px;
  color: #ffffff;
}

.container .card-login .text-error{
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: red;
  padding: 5px;
  margin: 0;
}

.container .card-login form{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-login form input{
  width: 80%;
  background: #134A69;
  border: none;
  border-bottom: 5px solid #E8ECEE;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
}

.card-login form input::placeholder{
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
}

.card-login form button{
  width: 80%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  border: none;
  box-shadow: rgba(0, 0, 0, .3)  0 4px 4px 4px;
  border-radius: 99px;
  background: #70bce6;
  color: #333333;
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
  transition: 0.2s ease-in-out;
}

.card-login form button:hover{
  filter: brightness(0.9);
}

.card-login form p, a{
  padding: 15px;
  font-size: 16px;
}

.card-login .new-user{
  margin-top: 40px;
}

.card-login .new-user p{
  line-height: 5px;
  color: #ffffff;
}

.card-login .new-user a{
  text-decoration: none;
  font-size: 18px;
  color:#70c4ea;
  font-weight: 700;
  transition: filter .2s;
}

.card-login .new-user a:hover{
  filter: brightness(0.8);
}

@media screen and (max-width: 425px){
  .container .card-login{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
  }

  .container .card-login form{
    justify-content: flex-start;
  }
}