/* === Revoluz Auth Pages (Login, Register, Forgot) === */

body {
  background: linear-gradient(to bottom, #f5f5f5 0%, #e9d5fa 100%);
  font-family: "Fira Sans", sans-serif;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: #fff;
  border-radius: 12px;
  margin: 10px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 420px;
}

.login-logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: 130px;
  height: auto;
}

h2 {
  text-align: center;
  color: #40006b;
  font-weight: 200;
  margin-bottom: 1rem;
}

p {
  color: #555;
  font-size: 0.95rem;
}

.form-control,
.form-select {
  height: 48px;
  font-size: 1.05rem;
  font-weight: 400;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  border-color: #9b00ff;
  box-shadow: 0 0 0 0.2rem rgba(155, 0, 255, 0.15);
}


.btn-primary {
  width: 100%;
  background-color: #40006b;
  border: none;
  font-weight: 600;
  height: 52px;
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  background-color: #5b0099;
}

.text-muted a {
  color: #9b00ff;
  text-decoration: none;
}

.text-muted a:hover {
  text-decoration: underline;
}

.alert {
  border-radius: 8px;
  padding: 0.8rem 1rem;
}

.nsl-container-buttons{
    width: 100% !important;
}
