/* ==============================
   AUTH / MEMBERSHIP LOGIN STYLES
   ============================== */

.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px 28px;
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

.auth-header p {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
}

.auth-error {
    background: #ffe5e5;
    color: #b30000;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 11px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-form input:focus {
    border-color: #007bff;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    font-size: 13px;
    color: #444;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(0deg, #9b650b, #f5a80c);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(0deg, #774e08, #b87e09);
}

.auth-footer {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
}

.auth-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}




/* dashboard */
.dashboard-wrapper {
    display: flex;
    min-height: 90vh;
    background: #f4f6f9;
}

/* Sidebar */
.dashboard-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #9b650b, #f5a80c);
    color: #fff;
    padding: 20px 15px;
    transition: transform 0.3s ease;
}

.sidebar-brand {
    text-align: center;
    margin-bottom: 30px;
}

.sidebar-brand img {
    max-width: 140px;
    width: 100%;
    border-radius: 8px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 10px;
}

.sidebar-menu a {
    display: block;
    padding: 12px 15px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
    background: rgba(0,0,0,0.2);
}

/* Content */
.dashboard-content {
    flex: 1;
    padding: 25px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dashboard-header h2 {
    margin: 0;
    font-size: 22px;
    color: #222;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.badge-approved { background: #e6f6ea; color: #1e7e34; }
.badge-pending  { background: #fff3cd; color: #856404; }
.badge-rejected { background: #f8d7da; color: #721c24; }
.badge-expired  { background: #f8d7da; color: #721c24; }

/* Buttons */
.btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(0deg, #9b650b, #f5a80c);
    color: #fff;
}

.btn-danger {
    background: #dc3545;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        transform: translateX(-100%);
        z-index: 999;
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }
}




/* ==============================
   MINIMAL MEMBERSHIP FORM
   ============================== */

.minimal-form {
    max-width: 720px;
}

.minimal-section {
    margin-bottom: 26px;
}

.minimal-section h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.minimal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.minimal-grid input,
.minimal-grid select,
.minimal-grid textarea {
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.minimal-grid input:disabled {
    background: #f3f3f3;
    color: #666;
}

.photo-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.photo-preview img {
    max-width: 100px;
    border-radius: 6px;
    display: none;
}

.payment-note {
    font-size: 13px;
    color: #666;
    background: #fff8e5;
    padding: 12px;
    border-left: 3px solid #f5a80c;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

/* Desktop Enhancement */
@media (min-width: 768px) {
    .minimal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
