﻿/* ================================
HELP PAGE CONTAINER
================================ */

.help-container {
    display: flex;
    justify-content: center;
    margin-top: 90px;
}

/* ================================
CARD
================================ */

.help-card {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    padding: 42px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

    /* ================================
HEADINGS
================================ */

.help-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.6rem;
    font-weight: 600;
}

.help-description {
    margin-bottom: 26px;
    color: #555;
    font-size: .95rem;
}

/* ================================
SUCCESS ALERT
================================ */

.help-alert-success {
    background: #e8f6ec;
    border: 1px solid #b7e3c3;
    color: #2f7d4a;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: 22px;
    font-size: .9rem;
}

/* ================================
FORM
================================ */

.help-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ================================
FORM GROUPS
================================ */

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
}

/* ================================
INPUTS
================================ */

.help-form input[type="text"],
.help-form input[type="email"],
.help-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: .95rem;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}

.help-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* focus */

.help-form input:focus,
.help-form textarea:focus {
    outline: none;
    border-color: #0053f1;
    box-shadow: 0 0 0 2px rgba(0,83,241,0.15);
}

/* ================================
CHECKBOX
================================ */

.checkbox-row {
    flex-direction: row;
    align-items: center;
    font-size: .9rem;
}

.checkbox-row input {
    margin-right: 8px;
}

/* ================================
BUTTON AREA
================================ */

.help-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

/* submit button */

.help-actions .btn-primary {
    background-color: #0053f1;
    border: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    color: white;
}

.help-actions .btn-primary:hover {
    background-color: #003ec0;
}

/* login button */

.btn-secondary {
    background: #f2f2f2;
    border: 1px solid #ccc;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: .9rem;
    text-decoration: none;
    color: #333;
}

.btn-secondary:hover {
    background: #e6e6e6;
}
