/* ========== RESELLER STYLES ========== */

.reseller-section {
    padding: 60px 0;
    background-color: #fff;
}

.reseller-header {
    text-align: center;
    margin-bottom: 50px;
}

.reseller-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin: 0;
    letter-spacing: 2px;
}

.reseller-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.reseller-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.reseller-info {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #222;
}

.reseller-info h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.reseller-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.reseller-info ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #333;
}

.reseller-info p {
    font-weight: 600;
    color: #222;
}

.reseller-form-container {
    flex: 1;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.reseller-form-container h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: #222;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 0.95rem;
    color: #444;
}

.checkbox-group a {
    color: #222;
    text-decoration: underline;
}

.btn-submit {
    background: #222;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    display: block;
    margin: 20px auto 0;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #444;
}

/* RESPONSIF */
@media (max-width: 768px) {
    .reseller-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .reseller-header h1 {
        font-size: 2rem;
    }
}