/* ===========================
   LevErsNET Sweet Contact Form
   Multi-Theme Styles
   =========================== */

/* Base Variables */
:root {
    --sweet-font: 'Poppins', sans-serif;
}

/* ===========================
   BASE STYLES
   =========================== */

.sweet-contact-wrapper {
    font-family: var(--sweet-font);
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.sweet-contact-header {
    padding: 40px;
    text-align: center;
    position: relative;
}

.sweet-contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.sweet-contact-icon i,
.sweet-contact-icon svg {
    width: 28px;
    height: 28px;
}

.sweet-contact-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
}

.sweet-contact-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

/* Body & Form Area */
.sweet-contact-body {
    padding: 0 40px 40px;
}

.sweet-contact-form-area {
    width: 100%;
}

/* Fields */
.sweet-fields-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.sweet-field-group {
    position: relative;
}

.sweet-field-width-100 { width: 100%; }
.sweet-field-width-50 { width: calc(50% - 10px); }
.sweet-field-width-33 { width: calc(33.333% - 14px); }

.sweet-field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.sweet-required {
    color: #ef4444;
    margin-left: 2px;
}

.sweet-field-wrap {
    position: relative;
}

.sweet-field-wrap.has-icon .sweet-field-input {
    padding-left: 45px;
}

.sweet-field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.sweet-field-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--sweet-font);
    color: #334155;
    background: #f8fafc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.sweet-field-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.sweet-field-input::placeholder {
    color: #94a3b8;
}

.sweet-field-input.sweet-error {
    border-color: #ef4444;
    background: #fef2f2;
}

textarea.sweet-field-input {
    min-height: 120px;
    resize: vertical;
}

select.sweet-field-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 45px;
}

/* Options Group */
.sweet-options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sweet-option-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.sweet-option-label input {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
}

/* Submit Button */
.sweet-submit-wrapper {
    text-align: center;
}

.sweet-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--sweet-font);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.sweet-submit-btn:hover {
    transform: translateY(-3px);
}

.sweet-submit-btn:active {
    transform: translateY(-1px);
}

.sweet-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.sweet-submit-btn i,
.sweet-submit-btn svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Message */
.sweet-form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.sweet-form-message.success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.sweet-form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Contact Info */
.sweet-contact-info,
.sweet-contact-info-bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sweet-contact-info-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.sweet-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.sweet-contact-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sweet-contact-item a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.sweet-contact-item a:hover {
    opacity: 0.7;
}

/* Split Layout */
.sweet-split-layout {
    display: flex;
    gap: 40px;
}

.sweet-contact-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding: 30px;
    border-radius: 15px;
}

.sweet-split-layout .sweet-contact-form-area {
    flex: 1;
}

/* ===========================
   THEME: Ocean Blue
   =========================== */

.sweet-theme-ocean .sweet-contact-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
}

.sweet-theme-ocean .sweet-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sweet-theme-ocean .sweet-submit-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.sweet-theme-ocean .sweet-submit-btn:hover {
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
}

.sweet-theme-ocean .sweet-contact-sidebar {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
}

.sweet-theme-ocean .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-ocean .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

.sweet-theme-ocean .sweet-contact-info-bottom .sweet-contact-item i {
    color: #0ea5e9;
}

/* ===========================
   THEME: Sky Light
   =========================== */

.sweet-theme-sky .sweet-contact-header {
    background: #f0f9ff;
    color: #0c4a6e;
}

.sweet-theme-sky .sweet-contact-icon {
    background: #e0f2fe;
    color: #0284c7;
}

.sweet-theme-sky .sweet-field-input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.sweet-theme-sky .sweet-submit-btn {
    background: #38bdf8;
    color: #fff;
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.3);
}

.sweet-theme-sky .sweet-submit-btn:hover {
    background: #0ea5e9;
}

.sweet-theme-sky .sweet-contact-sidebar {
    background: #e0f2fe;
}

.sweet-theme-sky .sweet-contact-sidebar .sweet-contact-item i {
    color: #0284c7;
}

/* ===========================
   THEME: Royal Purple
   =========================== */

.sweet-theme-royal .sweet-contact-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
}

.sweet-theme-royal .sweet-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sweet-theme-royal .sweet-field-input:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.sweet-theme-royal .sweet-submit-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.sweet-theme-royal .sweet-contact-sidebar {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
}

.sweet-theme-royal .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-royal .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

/* ===========================
   THEME: Mint Fresh
   =========================== */

.sweet-theme-mint .sweet-contact-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.sweet-theme-mint .sweet-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sweet-theme-mint .sweet-field-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.sweet-theme-mint .sweet-submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.sweet-theme-mint .sweet-contact-sidebar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.sweet-theme-mint .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-mint .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

/* ===========================
   THEME: Sunset Orange
   =========================== */

.sweet-theme-sunset .sweet-contact-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
}

.sweet-theme-sunset .sweet-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sweet-theme-sunset .sweet-field-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.sweet-theme-sunset .sweet-submit-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.sweet-theme-sunset .sweet-contact-sidebar {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
}

.sweet-theme-sunset .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-sunset .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

/* ===========================
   THEME: Dark Elegant
   =========================== */

.sweet-theme-dark {
    background: #1e293b;
    color: #e2e8f0;
}

.sweet-theme-dark .sweet-contact-header {
    background: #0f172a;
    color: #fff;
}

.sweet-theme-dark .sweet-contact-icon {
    background: #334155;
    color: #60a5fa;
}

.sweet-theme-dark .sweet-field-label {
    color: #cbd5e1;
}

.sweet-theme-dark .sweet-field-input {
    background: #334155;
    border-color: #475569;
    color: #e2e8f0;
}

.sweet-theme-dark .sweet-field-input:focus {
    border-color: #60a5fa;
    background: #1e293b;
}

.sweet-theme-dark .sweet-field-input::placeholder {
    color: #64748b;
}

.sweet-theme-dark .sweet-submit-btn {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.sweet-theme-dark .sweet-contact-sidebar {
    background: #0f172a;
}

.sweet-theme-dark .sweet-contact-sidebar .sweet-contact-item i {
    color: #60a5fa;
}

.sweet-theme-dark .sweet-contact-sidebar .sweet-contact-item a {
    color: #e2e8f0;
}

.sweet-theme-dark .sweet-contact-info-bottom {
    border-top-color: #334155;
}

.sweet-theme-dark .sweet-contact-info-bottom .sweet-contact-item i {
    color: #60a5fa;
}

.sweet-theme-dark .sweet-contact-info-bottom .sweet-contact-item a {
    color: #e2e8f0;
}

/* ===========================
   THEME: Minimal White
   =========================== */

.sweet-theme-minimal {
    box-shadow: none;
    border: 1px solid #e2e8f0;
}

.sweet-theme-minimal .sweet-contact-header {
    background: #fff;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.sweet-theme-minimal .sweet-contact-icon {
    background: #f1f5f9;
    color: #64748b;
}

.sweet-theme-minimal .sweet-submit-btn {
    background: #1e293b;
    color: #fff;
}

.sweet-theme-minimal .sweet-submit-btn:hover {
    background: #334155;
}

.sweet-theme-minimal .sweet-contact-sidebar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

/* ===========================
   THEME: Gradient Magic
   =========================== */

.sweet-theme-gradient .sweet-contact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #fff;
}

.sweet-theme-gradient .sweet-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sweet-theme-gradient .sweet-field-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.sweet-theme-gradient .sweet-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.sweet-theme-gradient .sweet-contact-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.sweet-theme-gradient .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-gradient .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

/* ===========================
   THEME: Corporate Teal
   =========================== */

.sweet-theme-corporate .sweet-contact-header {
    background: linear-gradient(135deg, #3A6882 0%, #2d5268 100%);
    color: #fff;
}

.sweet-theme-corporate .sweet-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sweet-theme-corporate .sweet-field-input:focus {
    border-color: #3A6882;
    box-shadow: 0 0 0 4px rgba(58, 104, 130, 0.1);
}

.sweet-theme-corporate .sweet-submit-btn {
    background: linear-gradient(135deg, #3A6882 0%, #2d5268 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(58, 104, 130, 0.4);
}

.sweet-theme-corporate .sweet-contact-sidebar {
    background: linear-gradient(135deg, #3A6882 0%, #2d5268 100%);
    color: #fff;
}

.sweet-theme-corporate .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-corporate .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

.sweet-theme-corporate .sweet-contact-info-bottom .sweet-contact-item i {
    color: #3A6882;
}

.sweet-theme-corporate .sweet-contact-info-bottom .sweet-contact-item a {
    color: #3A6882;
}

/* ===========================
   SOCIAL MEDIA SECTION
   =========================== */

.sweet-social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.sweet-social-title {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sweet-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sweet-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--social-color, #3b82f6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.sweet-social-icon:hover {
    background: var(--social-color, #3b82f6);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sweet-social-icon:hover svg {
    fill: #fff;
}

.sweet-social-icon i {
    font-size: 18px !important;
    width: auto !important;
    height: auto !important;
}

.sweet-social-icon svg {
    width: 18px !important;
    height: 18px !important;
    fill: var(--social-color, #3b82f6);
}

/* Dark theme social */
.sweet-theme-dark .sweet-social-section {
    border-top-color: #334155;
}

.sweet-theme-dark .sweet-social-title {
    color: #94a3b8;
}

.sweet-theme-dark .sweet-social-icon {
    background: #334155;
}

/* ===========================
   LAYOUT: Inline
   =========================== */

.sweet-layout-inline .sweet-fields-wrapper {
    flex-direction: row;
    align-items: flex-start;
}

.sweet-layout-inline .sweet-field-group {
    flex: 1;
    min-width: 150px;
}

.sweet-layout-inline .sweet-field-width-100,
.sweet-layout-inline .sweet-field-width-50,
.sweet-layout-inline .sweet-field-width-33 {
    width: auto;
    flex: 1;
}

.sweet-layout-inline .sweet-submit-wrapper {
    margin-top: 10px;
}

.sweet-layout-inline .sweet-submit-btn {
    width: 100%;
}

/* ===========================
   LAYOUT: Split
   =========================== */

.sweet-layout-split .sweet-contact-body {
    display: flex;
    gap: 0;
}

.sweet-layout-split .sweet-contact-sidebar {
    width: 280px;
    flex-shrink: 0;
    padding: 30px;
    border-radius: 0;
    margin: 0;
}

.sweet-layout-split .sweet-contact-form-area {
    flex: 1;
    padding: 30px 40px;
}

.sweet-layout-split .sweet-contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Split layout theme backgrounds */
.sweet-theme-ocean.sweet-layout-split .sweet-contact-sidebar {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.sweet-theme-sky.sweet-layout-split .sweet-contact-sidebar {
    background: #e0f2fe;
}

.sweet-theme-royal.sweet-layout-split .sweet-contact-sidebar {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.sweet-theme-mint.sweet-layout-split .sweet-contact-sidebar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.sweet-theme-sunset.sweet-layout-split .sweet-contact-sidebar {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.sweet-theme-dark.sweet-layout-split .sweet-contact-sidebar {
    background: #0f172a;
}

.sweet-theme-minimal.sweet-layout-split .sweet-contact-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.sweet-theme-gradient.sweet-layout-split .sweet-contact-sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sweet-theme-corporate.sweet-layout-split .sweet-contact-sidebar {
    background: linear-gradient(135deg, #3A6882 0%, #2d5268 100%);
}

/* Split layout text colors */
.sweet-theme-ocean.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item,
.sweet-theme-royal.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item,
.sweet-theme-mint.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item,
.sweet-theme-sunset.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item,
.sweet-theme-gradient.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item,
.sweet-theme-corporate.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item {
    color: #fff;
}

.sweet-theme-ocean.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-ocean.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a,
.sweet-theme-royal.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-royal.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a,
.sweet-theme-mint.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-mint.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a,
.sweet-theme-sunset.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-sunset.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a,
.sweet-theme-gradient.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-gradient.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a,
.sweet-theme-corporate.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i,
.sweet-theme-corporate.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a {
    color: #fff;
}

.sweet-theme-dark.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i {
    color: #60a5fa;
}

.sweet-theme-dark.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item a {
    color: #e2e8f0;
}

.sweet-theme-sky.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i {
    color: #0284c7;
}

.sweet-theme-minimal.sweet-layout-split .sweet-contact-sidebar .sweet-contact-item i {
    color: #64748b;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .sweet-contact-wrapper {
        margin: 20px 15px;
        border-radius: 16px;
    }

    .sweet-contact-header {
        padding: 30px 25px;
    }

    .sweet-contact-title {
        font-size: 24px;
    }

    .sweet-contact-body {
        padding: 0 25px 30px;
    }

    .sweet-field-width-50,
    .sweet-field-width-33 {
        width: 100%;
    }

    .sweet-split-layout {
        flex-direction: column;
    }

    .sweet-contact-sidebar {
        width: 100%;
        order: 2;
    }

    /* Split Layout Responsive */
    .sweet-layout-split .sweet-contact-body {
        flex-direction: column;
    }

    .sweet-layout-split .sweet-contact-sidebar {
        width: 100%;
        border-radius: 0;
        order: 2;
    }

    .sweet-layout-split .sweet-contact-form-area {
        padding: 25px;
    }

    /* Inline Layout Responsive */
    .sweet-layout-inline .sweet-fields-wrapper {
        flex-direction: column;
    }

    .sweet-layout-inline .sweet-field-group {
        width: 100%;
    }

    /* Social Media Responsive */
    .sweet-social-icons {
        gap: 10px;
    }

    .sweet-social-icon {
        width: 40px;
        height: 40px;
    }

    .sweet-submit-btn {
        width: 100%;
    }

    .sweet-contact-info-bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .sweet-contact-header {
        padding: 25px 20px;
    }

    .sweet-contact-title {
        font-size: 20px;
    }

    .sweet-contact-body {
        padding: 0 20px 25px;
    }

    .sweet-field-input {
        padding: 12px 15px;
    }

    .sweet-submit-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}
