/* AOEC MEET — Scoped Styles */

/* Navbar */
.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  background: #fff !important;
}

/* Login/Signup Cards ONLY (not admin panel) */
#signin-form .card,
#signup-form .card,
[class*="SigninForm"] .card,
[class*="SignupForm"] .card {
  border: none !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
  border-radius: 16px !important;
  max-width: 440px !important;
  margin: 0 auto !important;
}

/* Buttons — AOEC Red */
.btn-brand, .btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}
.btn-brand:hover, .btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  box-shadow: 0 4px 12px rgba(220,38,38,0.3) !important;
}

/* Outline buttons */
.btn-brand-outline-color {
  border: 2px solid #dc2626 !important;
  color: #dc2626 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  background: transparent !important;
}
.btn-brand-outline-color:hover {
  background: #dc2626 !important;
  color: #fff !important;
}

/* Input focus */
.form-control:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1) !important;
}

/* Hide BBB links & footer */
a[href*="bigbluebutton.org"] { display: none !important; }
#footer { display: none !important; }

/* Body */
body { background: #fafafa !important; }

CSSOEF
