* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: url('bg-textura.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: "Instrument Sans", sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 51px;
    height: 100vh;
  }
  
  .login-container {
    max-width: 400px;
    text-align: start;
    padding: 20px;
    border-radius: 16px;
  }
  
  .logo {
    width: 80%;
    max-width: 280px;
    margin-bottom: 60px;
  }
  
  .login-form {
    margin-top:60px;
    font-family: "Gantari", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width:300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .login-form input {
    padding: 12px;
    border: 1px solid white;
    border-radius: 7px;
    background: transparent;
    color: white;
    font-size: 1rem; 
  }

  .login-form input:focus {
    outline: none;
    border-color: #ffffff; 
  }
  
  
  .login-form input::placeholder {
    color: white;
    opacity: 1;
  }
  
  .login-form button {
    padding: 12px;
    background-color: #309EFF;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem; 
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .login-form button:hover {
    background-color: #309EFF;
  }
  
  .password {
    margin-top: 5px;
    margin-bottom: 10px;
  }
  
  .acessar {
    margin-top: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .validate {
    width: 300px;
    margin-bottom: 10px;
  }
  /* tablets e desktops */
  @media (min-width: 768px) {
    .login-container {
      max-width: 420px;
      padding: 30px 40px;
    }
  
    .login-form input,
    .login-form button {
      font-size: 1rem;
    }
  }
  
  /* telas pequenas */
  @media (max-height: 500px) {
    body {
      align-items: flex-start;
      padding-top: 40px;
    }

    .logo {
      margin-bottom: 40px;
    }
  }
  