@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Contenedor centrado */
.login-wrap{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

/* Tarjeta */
.login-card{
  width: 100%;
  max-width: 520px;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  animation: fadeUp .6s ease-out;
  box-shadow:
    inset 0 8px 18px rgba(0,0,0,.18),
    inset 0 -8px 18px rgba(255,255,255,.55),
    0 8px 24px rgba(0,0,0,.12);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Marca */
.brand-logo{
  height: 78px;
  object-fit: contain;
}

/* Inputs */
.form-control{
  border-radius: 12px;
}

.input-group .btn{
  border-radius: 12px;
}

/* Ojito */
.toggle-pass{
  cursor: pointer;
}

/* Botón */
.btn-login{
  border-radius: 14px;
  height: 52px;
  font-weight: 600;
}

.btn-primary{
  background-color: #691c32 !important;
  border-color: #691c32 !important;
  color: #ffffff !important;
}

.btn-primary:hover{
  background-color: #5a1629 !important;
  border-color: #5a1629 !important;
  color: #ffffff !important;
}

.btn-outline-secondary{
  border-color: #691c32 !important;
  color: #691c32 !important;
}

.btn-outline-secondary:hover{
  background-color: #691c32 !important;
  border-color: #691c32 !important;
  color: #ffffff !important;
}

/* Alert */
#loginError{
  border-radius: 12px;
}
