@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@keyframes text-login {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }
  @keyframes scale-up-ver-center {
    0% {
      -webkit-transform: scaleY(0.4);
              transform: scaleY(0.4);
    }
    100% {
      -webkit-transform: scaleY(1);
              transform: scaleY(1);
    }
  }


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

.polium{
    font-size: 2.25rem;
    position: absolute;
    text-align: center;
    top: 12%;
    transform: translatey(-50%);
    widows: rgba(0, 0, 0, 0.24) 0rem 0.1875rem 0.5rem;
    color: #fff;
    -webkit-animation: scale-up-ver-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-ver-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #044189;
}

.container{
    width: 26.25rem;
    background-color: transparent;
    border: 0.125rem solid rgba(255, 255, 255, .2);
    border-radius: 0.796rem;
    border-color: #e1af3f;
    color: #fff;
    padding: 1.875rem 2.5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0rem 0.1875rem 0.5rem;
    backdrop-filter: blur(7.5rem);
    background: #044189;
}

.container h1{
    font-size: 2.25rem;
    text-align: center;
}

.caixa{
    position: relative;
    width: 100%;
    height: 3.125rem;
    margin: 1.875rem 0;
}

.caixa input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0.125rem solid rgba(255, 255, 255, .2);
    border-radius: 2.5rem;
    outline: none;
    font-size: 1rem;
    color: #fff;
    padding: 1.25rem 2.8125rem 1.25rem 1.25rem;
}

.caixa input::placeholder{
    color: #d3d2d2;
}

.caixa i{
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translatey(-50%);
}

.guardar{
    display: flex;
    position: relative;
    left: 4.8125rem;
}

.guardar label input{
    accent-color: #fff;
    margin-right: 0.3125rem;
}

.guardar a{
    text-decoration: none;
    color: #fff;
}

.guardar a:hover{
    text-decoration: underline;
}

.login{
    width: 100%;
    height: 3.125rem;
    background-color: #fff;
    border: none;
    border-radius: 2.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0rem 0.1875rem 0.5rem;
    margin-top: 0.625rem;
}

.login:hover{
    background-color: transparent;
    border: 0.125rem solid rgba(255, 255, 255, .2);
    color: #fff;
    transition: 0.5s;
}

.inscrevasse{
    font-size: 0.875rem;
    text-align: center;
    margin: 1.25rem 0 0.9375rem;
}

.inscrevasse a{
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.inscrevasse a:hover{
    text-decoration: underline;
}

.voltar{
position: absolute;
top: 2rem;
left: 2rem;
padding: 0.240rem;
    width: 2.5rem;
   height: 2.5rem;
    border: 0.063rem solid rgb(204, 196, 196);
    border-radius: 50%;
    transition: 1s;
}

.voltarprologin{
  text-align: center;
  font-size: 0.983rem;
  margin: 1.25rem 0 0.9375rem;
}

.voltarprologin a{
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.voltarprologin a:hover{
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .container {
    width: 90%;
    padding: 1.5rem;
  }

  .container h1 {
    font-size: 1.75rem;
  }

  .caixa input {
    font-size: 0.95rem;
    padding: 1rem 2.5rem 1rem 1rem;
  }

  .polium {
    font-size: 1.75rem;
    top: 7%;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .voltar {
    top: 1rem;
    left: 1rem;
    width: 2rem;
    height: 2rem;
  }

  .guardar {
    justify-content: center;
    left: 0;
    font-size: 0.9rem;
  }

  .login {
    font-size: 0.95rem;
    height: 2.8rem;
  }

  .inscrevasse {
    font-size: 0.8rem;
  }

  .caixa i {
    right: 1rem;
  }
}


