/* Guest layout custom styles */
:root {
  --brand-primary: #0d6efd; /* Bootstrap primary */
  --brand-bg: #f8fafc;
}

html { direction: rtl; }
body {
  background: var(--brand-bg);
  font-family: 'Cairo', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

/* Centered auth card spacing */
main.container { min-height: calc(100vh - 4rem); }

/* Subtle card polish for auth boxes provided by Bootstrap classes */
.card { border-radius: .75rem; }
.card .form-control:focus {
  border-color: rgba(13,110,253,.5);
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.25);
}

/* Buttons */
.btn-primary {
  background-image: linear-gradient(135deg, var(--brand-primary), #6941c6);
  border: 0;
}
.btn-primary:hover { filter: brightness(1.03); }

/* Alerts readability */
.alert { border-radius: .5rem; }

/* Small helpers */
.small, small { font-size: .875rem; }

