/* public/assets/css/style.css */

/* Theme variables */
:root {
  --primary-color: #59b347;
  --secondary-color: #f26242;
}

/* Generic body bg */
body {
  background-color: #f5f7fb;
}

/* App title in navbar */
.app-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Auth layout */
.auth-wrapper {
  min-height: calc(100vh - 120px); /* navbar + footer rough height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: none;
}

/* Left colorful side (desktop/tablet) */
.auth-side-brand {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-side-brand h3 {
  font-weight: 700;
  margin-bottom: 12px;
}

.auth-side-brand p {
  opacity: 0.9;
}

/* Little badge pill */
.badge-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

/* Form side */
.auth-form-side {
  padding: 28px 24px;
}

@media (min-width: 768px) {
  .auth-form-side {
    padding: 40px 32px;
  }
}

/* Subtle input focus */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(89, 179, 71, 0.25);
}
