
/* ================= HERO ================= */

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero p {
    color: #444;
    font-size: 14px;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto;
}

/* ================= LAYOUT ================= */

.layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ================= INFO PANEL ================= */

.info {
    background: #fff;
    border-radius: 14px;
    padding: 20px;

    height: fit-content;

    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.info h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info ul {
    padding-right: 18px;
    font-size: 13px;
    color: #555;
    line-height: 2;
}

/* info box unified */
.info-box {
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 13px;
}

.info-box p {
    margin-top: 6px;
    color: #777;
    font-size: 12px;
}

/* ================= FORM CARD ================= */

.form-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;

    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ================= FORM FIELDS ================= */

label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px 12px;

    border: 1px solid #ddd;
    border-radius: 10px;

    font-size: 14px;

    outline: none;
    transition: 0.2s ease;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #e0bc1b;
    box-shadow: 0 0 0 3px rgba(224,188,27,0.15);
}

/* ================= BUTTON ================= */

.btn {
    margin-top: 18px;
    width: 100%;

    padding: 12px;
    border: none;
    border-radius: 12px;

    background: #e0bc1b;
    color: #111;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: 0.2s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn:hover {
    background: #cfae19;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }
}