section {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      min-height: 100vh;
      background-color: #000;
      background-color: url("../image/bg.png"); 
      background-size: cover;
      background-position: center;
      animation: animateBg 5s linear infinite; */
}

.login-box {
      position: relative;
      width: 400px;
      height: auto;
      background-color: transparent;
      border: 2px solid rgba(255, 255, 255, .5); 
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(15px);
      padding: 20px;
      box-sizing: border-box;
}

.login-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
      text-align: center;
}

.mensagem {
      color: fff;
      font-size: 0.8em;
      line-height: 1.4em;
}

.mensagem p {
      color: #87CEFA;
      margin: 0.5em 0;
      text-align: center;
      font-size: 1.05em;
      max-width: 300px;
}

.mensagem .ok {
      color: #32cd32;
      font-weight: bold;
}

.mensagem .erro {
      color: #ff4d44;
      font-weight: bold;
}

.login-box h2 {
      font-size: 1.5em;
      color: #fff;
      text-align: center;
}

.login-box .info {
      color: #87CEFA;
      margin: 0.5em 0;
      text-align: center;
      font-size: 1.05em;
      max-width: 300px;
}

.input-box {
      position: relative;
      width: 310px;
      margin: 20px 0;
      border-bottom: 2px solid #fff;
}

.input-box label {
      position: absolute;
      top: 50%;
      left: 50px;
      transform: translateX(-50px);
      font-size: 1em;
      color: #fff;
      pointer-events: none;
      transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
      top: -5px;
}

.input-box input {
      width: 100%;
      height: 50px;
      background: transparent;
      border: none;
      outline: none;
      font-size: 1em;
      color: #fff;
      padding: 0 35px 0 5px;
}

.input-box .icon {
      position: absolute;
      right: 8px;
      color: #fff;
      font-size: 1.2em;
      line-height: 57px;
}

.remember-forgot {
      margin: -15px 0 15px;
      font-size: .9em;
      color: #fff;
      display: flex;
      justify-content: space-between;
}

.remember-forgot label input {
      margin-right: 3px;
}

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

.remember-forgot a:hover {
      text-decoration: underline;
}

button {
      width: 200px;
      height: 40px;
      background: #fff;
      border: none;
      outline: none;
      border-radius: 40px;
      cursor: pointer;
      font-size: 1em;
      color: #000;
      font-weight: 500;
}

.register-link {
      font-size: .9em;
      color: #fff;
      text-align: center;
      margin: 25px 0 10px;
}

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

.register-link p a:hover {
      text-decoration: underline;
}

@media (max-width: 360px) {
      .login-box {
            width: 100%;
            height: 100vh;
            border: none;
            border-radius: 0;
      }

      .input-box {
            width: 290px;
      }
}