/* -------------------- GENERALES -------------------- */
body {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: linear-gradient(to bottom right, #3e5f80, #2a415c);
  font-family: 'Inter', sans-serif;
}

h2 {
  font-size: 30px; /* 3xl */
  font-weight: 700;
  color: #1e293b; /* slate-800 */
  text-align: center;
  margin-bottom: 8px;
}

p {
  color: #64748b; /* slate-500 */
  text-align: center;
  font-size: 15px;
}


/*  */
.header-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}



/* -------------------- CARD -------------------- */
.container {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 32px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.container:hover {
  transform: scale(1.05);
}

/* -------------------- LOGO -------------------- */
.logo {
  display: block;
  height: 20px;
  background: white;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 16px;
}



/* -------------------- FORMULARIO -------------------- */
form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #46566d; /* slate-700 */
  margin-bottom: 4px;
}





/* Input */
input[type="text"],
input[type="password"] {
  box-sizing: border-box;
  width: 100%;
  display: block;
  padding: 12px; /* espacio para el ícono */
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  color: #1e293b;
  background-color: white;
}

input:focus {
  outline: none;
  border-color: #ea580c;
  box-shadow: 0 0 0 1px #ea580c;
}

input::placeholder {
  color: #94a3b8;
}

/* -------------------- BOTÓN -------------------- */
.button-orange {
  width: 100%;
  background-color: #ea580c; /* orange-600 */
  color: white;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button-orange:hover {
  background-color: #c2410c; /* orange-700 */
}

/* -------------------- FOOTER -------------------- */
footer {
  margin-top: 32px;
  color: #94a3b8;
  font-size: 12px;
  text-align: center;
}
