@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f7ff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Contenedor principal */
.login-container {
  background-color: #dce3ff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Logo */
.login-logo {
  width: 180px;
  margin-bottom: 10px;
}

/* Título */
.login-title {
  font-size: 1.6rem;
  color: #1d3edc;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Formulario */
.login-form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.login-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #1d1d4f;
}

.login-form input {
  padding: 10px;
  border: 1px solid #b5c0e6;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 1rem;
  background-color: #fff;
}

/* Botón */
.login-form button {
  margin-top: 10px;
  padding: 12px;
  background-color: #1d3edc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-form button:hover {
  background-color: #0a1cd4;
}

/* Responsivo */
@media (max-width: 480px) {
  .login-container {
    padding: 30px 20px;
  }

  .login-logo {
    width: 120px;
  }

  .login-title {
    font-size: 1.4rem;
  }
}
