/* login.css – Estilos para la pantalla de login UBIKUA */

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 420px;
  width: 90%;
}

.login-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-logo {
  max-height: 50px;
  margin-bottom: 1rem;
}

.login-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #336699;
  margin: 0;
}

.login-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.25rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form label {
  font-weight: 600;
  color: #333;
}

.login-form input {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.login-button {
  padding: 0.75rem;
  background-color: #336699;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.login-button:hover {
  background-color: #2a527d;
}

.login-error {
  color: #d9534f;
  font-size: 0.9rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
