﻿/* ── Form pages: login, register, forgot-password ─────────────────────────── */

/* Full-width button modifier */
.btn-block {
    display: block;
    width: 100%;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background .2s, box-shadow .2s;
}

/* Checkbox / radio row */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-check-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #2563eb;
}
.form-check-label {
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}

/* Registration option cards (login.php) */
.registration-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 10px;
}
.registration-card {
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color .22s, background .22s, box-shadow .22s;
}
.registration-card:hover {
    border-color: #2563eb;
    background: #f0f4ff;
    box-shadow: 0 4px 14px rgba(4,34,64,.1);
}
.registration-card .registration-icon {
    font-size: 32px;
    color: #1e40af;
    margin-bottom: 10px;
}
.registration-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
}
.registration-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
    margin: 0 0 14px;
}
/* Compact card button — same navy→blue scheme as the site-wide button system */
.registration-card .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    background: #1e3a5f;
    color: #fff;
    border: 2px solid #1e3a5f;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.registration-card .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* Page-level layout used by all form pages */
.page-main {
    margin-top: 140px;
    padding: 40px 20px 60px;
    background: #f9fafb;
    min-height: calc(100vh - 120px);
}
.page-header {
    text-align: center;
    margin-bottom: 32px;
}
.page-title {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 8px;
}
.page-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}
.page-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 640px) {
    .registration-options {
        grid-template-columns: 1fr;
    }
    .page-main {
        margin-top: 80px;
        padding: 24px 14px 40px;
    }
    .page-title {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .btn-block {
        font-size: 14px;
    }
}
