@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Outfit', sans-serif; background: #f0f6ff; color: #1a2a3a; min-height: 100vh; }

/* NAV */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 40px; background: #ffffff; border-bottom: 2px solid #1a5fb4; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px #1a5fb414; }
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #1a5fb4; text-decoration: none; }
.nav-links { display: flex; gap: 36px; }
.nav-links span, .nav-links a { font-size: 15px; font-weight: 700; color: #1a2a3a; cursor: pointer; text-decoration: none; }
.nav-links span:hover, .nav-links a:hover { color: #1a5fb4; }

/* BUTTONS */
.btn-primary { background: linear-gradient(135deg, #1a5fb4, #2176d9); color: #ffffff; padding: 11px 26px; border-radius: 4px; font-size: 14px; font-weight: 700; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; display: inline-block; text-decoration: none; }
.btn-primary:hover { background: linear-gradient(135deg, #1550a0, #1868c5); }
.btn-outline { background: transparent; border: 2px solid #1a5fb4; color: #1a5fb4; padding: 9px 22px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Outfit', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: #1a5fb408; }

/* FOOTER */
.footer { padding: 16px 40px; background: #1a2a3a; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.ft { font-size: 11px; color: #6a8aaa; }

/* FORMS */
.form-card { background: #ffffff; border: 1px solid #c8daf0; border-radius: 12px; padding: 40px; max-width: 460px; margin: 60px auto; box-shadow: 0 4px 20px #1a5fb414; }
.form-card h2 { font-family: 'Playfair Display', serif; font-size: 28px; color: #0d1f35; margin-bottom: 8px; }
.form-card p { font-size: 14px; color: #5a7a9a; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #1a2a3a; margin-bottom: 6px; }
.form-group input { width: 100%; padding: 12px 14px; border: 1px solid #c8daf0; border-radius: 6px; font-size: 14px; font-family: 'Outfit', sans-serif; color: #1a2a3a; background: #f8fbff; outline: none; }
.form-group input:focus { border-color: #1a5fb4; box-shadow: 0 0 0 3px #1a5fb414; }
.form-error { color: #d93025; font-size: 13px; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-switch { text-align: center; font-size: 13px; color: #5a7a9a; margin-top: 20px; }
.form-switch a { color: #1a5fb4; font-weight: 600; text-decoration: none; }

/* ALERTS */
.alert { padding: 12px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; margin-bottom: 16px; display: none; }
.alert.show { display: block; }
.alert-error { background: #fde8e8; color: #b91c1c; border: 1px solid #fca5a5; }
.alert-success { background: #e8f5e9; color: #1a6e2e; border: 1px solid #a5d6a7; }

/* PAGE WRAPPER */
.page-wrap { padding: 40px; max-width: 1100px; margin: 0 auto; }
.page-title { font-family: 'Playfair Display', serif; font-size: 32px; color: #0d1f35; margin-bottom: 8px; }
.page-sub { font-size: 14px; color: #5a7a9a; margin-bottom: 32px; }
