* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body,
html {
  height: 100%;
}

/* Fundo dividido */
.background {
  height: 100%;
  background: linear-gradient(to bottom, #ffffff 50%, #000000 50%);
  display: flex;
  align-items: center;
  justify-content: center; 
}

/* Card */
.login-card {
  background: #ffffff;
  width: 390px;
  padding: 65px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Logo */
.logo {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%); 
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0e115b; 
}

.logo img {
  width: 100px; 
}

/* Título */
.login-card h2 {
  margin-top: 100px;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-size: 32px;
  font-weight: 400;
}

/* Inputs */
.login-card input {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  border-radius: 30px;
  background: #eeeeee;
  outline: none;
  font-size: 14px;
}

/* Botão */
.login-card button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: #fff7b2;
  font-size: 18px;
  font-weight: 450;
  cursor: pointer;
  transition: 0.3s;
}

.login-card button:hover {
  background: #9d9219;
}

/* Recuperar senha */
.esqueci {
  display: block;
  display: none;
  margin-top: 15px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.esqueci:hover {
  text-decoration: underline;
}

@media (min-width: 600px) and (max-width: 900px) {
  /* Card */
  .login-card {
    background: #ffffff;
    width: 100%; 
    margin: auto 10%;
    padding: 65px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
  }

  /* Logo */
  .logo {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img {
    width: 166px;
  }

  /* Título */
  .login-card h2 {
    margin-top: 90px;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-size: 28pt;
    font-weight: 400;
  }

  /* Inputs */
  .login-card input {
    width: 100%;
    height: 68px;
    margin-bottom: 60px;
    border: none;
    border-radius: 30px;
    background: #eeeeee;
    outline: none;
    font-size: 18pt;
  }

  .login-card input::placeholder { 
    font-size: 18pt; 
  }

  /* Botão */
  .login-card button {
    width: 100%;
    height: 68px;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #fff7b2;
    font-size: 18px;
    font-weight: 450;
    cursor: pointer;
    transition: 0.3s;
  }

  .login-card button:hover {
    background: #9d9219;
  }

  /* Recuperar senha */
  .esqueci {
    display: block;
    display: none;
    margin-top: 15px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
  }

  .esqueci:hover {
    text-decoration: underline;
  }
}
