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

body {
    font-family: 'Nunito', 'Public Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Register Page ─────────────────────────────────── */
.register-page {
    flex: 1;
    display: flex;
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #f9e8e8 0%, #f2b4b0 40%, #d96b65 100%);
}

.register-page > .container {
    display: flex;
    align-items: stretch;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ─── Left Branding ─────────────────────────────────── */
.register-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 0;
}

.register-left h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.register-left p {
    font-size: 1rem;
    color: #333;
    max-width: 380px;
    line-height: 1.6;
}

/* ─── Right Card ────────────────────────────────────── */
.register-right {
    flex: 0 0 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.register-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 44px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.register-card h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 28px;
    text-align: center;
}

/* ─── Optional label ────────────────────────────────── */
.form-label .optional {
    font-weight: 400;
    color: #999;
    font-size: 0.8rem;
    margin-left: 4px;
}

/* ─── Date input ────────────────────────────────────── */
.date-wrapper {
    position: relative;
}

.date-wrapper .calendar-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
    pointer-events: none;
}

.date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    cursor: pointer;
}

/* ─── Forgot / links ────────────────────────────────── */
.forgot-link:hover { color: #c0392b; }

/* ─── Buttons ───────────────────────────────────────── */
.btn-signup {
    width: 100%;
    padding: 15px;
    background: #8B1A1A;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn-signup:hover   { background: #a61e1e; }
.btn-signup:disabled { opacity: 0.7; cursor: not-allowed; }

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 960px) {
    .register-left { display: none; }
    .register-right {
        flex: 1;
        padding: 0 16px;
    }
}

@media (max-width: 500px) {
    .register-card { padding: 32px 20px; }
}
