* {
  box-sizing: border-box;
  font-family: 'Inter', Arial, sans-serif;
}

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD LOGIN */

.login-container {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 35px;
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1f2933;
}

/* LABELS */

.login-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
}

/* INPUTS */

.login-container input {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.login-container input:focus {
  outline: none;
  border-color: #2c5364;
  box-shadow: 0 0 0 2px rgba(44,83,100,0.15);
}

/* BOTÕES */

.login-container button {
  width: 100%;
  padding: 13px;
  border: none;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
  margin-top: 5px;
}

/* BOTÃO NORMAL */

.login-container button[type="submit"] {
  background: #2c5364;
  color: #fff;
}

.login-container button[type="submit"]:hover {
  background: #203a43;
  transform: translateY(-1px);
}

/* BOTÃO GOOGLE */

.login-container a button[type="button"] {
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  margin-top: 10px;
}

.login-container a button[type="button"]:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

/* FOOTER */

.login-container .footer {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
}

.login-container .footer a {
  color: #2c5364;
  text-decoration: none;
  font-weight: 600;
}
