/* CSR Page CSS
/* Import Google Fonts - Same as other pages */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
.csr-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL WIDTH OVERRIDE - Same as Director's Desk */
.csr-page {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* Force all sections to take full width */
.csr-page section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Container styles - Aligned with other pages */
.csr-page .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* Typography - Same fonts as other pages */
.csr-page h1,
.csr-page h2,
.csr-page h3,
.csr-page h4 {
    font-family: 'Lora', serif;
}

.csr-page p,
.csr-page span,
.csr-page div {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.csr-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
    padding: 120px 0 140px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative;
}

.csr-hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 80px;
    align-items: center;
}

.csr-hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #125849;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #125849;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.csr-hero-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(18, 88, 73, 0.15);
}

.csr-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(18, 88, 73, 0.9) 100%);
    padding: 40px 30px;
    color: white;
}

.overlay-text h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.overlay-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Section Header - Consistent with other pages */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    color: #333 !important;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #125849, #1e6b5a);
    border-radius: 3px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Focus Areas Section */
.focus-areas-section {
    padding: 140px 0 !important;
    background: white !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.focus-area-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px 40px;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.focus-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(18, 88, 73, 0.05), transparent);
    transition: left 0.5s;
}

.focus-area-card:hover::before {
    left: 100%;
}

.focus-area-card:hover {
    border-color: #125849;
    background: white;
    box-shadow: 0 25px 60px rgba(18, 88, 73, 0.12);
    transform: translateY(-10px);
}

.focus-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.focus-area-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.focus-area-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-weight: 400;
}

.focus-list {
    list-style: none;
    padding: 0;
}

.focus-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.focus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #125849;
    font-weight: 600;
}

/* Impact Statistics Section */
.impact-stats-section {
    background: linear-gradient(135deg, #125849 0%, #1e6b5a 100%) !important;
    padding: 140px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    color: white;
}

.impact-stats-section .section-title {
    color: white !important;
}

.impact-stats-section .section-title::after {
    background: white;
}

.impact-stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.impact-number {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.impact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.impact-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Recent Initiatives Section */
.recent-initiatives-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
    padding: 140px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.initiative-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 88, 73, 0.1);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(18, 88, 73, 0.15);
}

.initiative-image {
    height: 200px;
    overflow: hidden;
}

.initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.initiative-content {
    padding: 30px;
}

.initiative-category {
    display: inline-block;
    background: linear-gradient(135deg, #125849, #1e6b5a);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.initiative-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.initiative-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.initiative-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.initiative-date,
.initiative-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

/* Partnerships Section */
.partnerships-section {
    padding: 140px 0 !important;
    background: white !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.partnerships-content {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 80px;
    align-items: center;
}

.partnership-text h3 {
    font-family: 'Lora', serif;
    font-size: 2.2rem !important;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.partnership-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
}

.partnership-types {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.partnership-type {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #125849;
}

.partnership-type h4 {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.partnership-type p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.partnership-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partner-stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    border: 2px solid #125849;
    transition: all 0.3s ease;
}

.partner-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 88, 73, 0.15);
}

.partner-stat .stat-number {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #125849;
    margin-bottom: 10px;
}

.partner-stat .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Get Involved Section */
.get-involved-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%) !important;
    padding: 140px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.involvement-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.involvement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #125849, #1e6b5a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.involvement-card:hover::before {
    transform: scaleX(1);
}

.involvement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(18, 88, 73, 0.15);
    border-color: #125849;
}

.involvement-card h3 {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.involvement-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.involvement-button {
    display: inline-block;
    background: linear-gradient(135deg, #125849, #1e6b5a);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.involvement-button:hover {
    background: linear-gradient(135deg, #1e6b5a, #125849);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(18, 88, 73, 0.3);
    color: #ffffff !important;
}

/* CSR Contact Section */
.csr-contact-section {
    background: white !important;
    padding: 140px 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.csr-contact-content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.contact-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.contact-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #125849;
}

.contact-item strong {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    color: #125849;
    display: block;
    margin-bottom: 10px;
}

.contact-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 5px 0;
}

.contact-form {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(18, 88, 73, 0.1);
}

.contact-form h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    flex: 1;
}

.csr-form input,
.csr-form select,
.csr-form textarea {
    width: 100%;
    padding: 9px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.csr-form input:focus,
.csr-form select:focus,
.csr-form textarea:focus {
    outline: none;
    border-color: #125849;
}

.csr-form textarea {
    margin-bottom: 30px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #125849, #1e6b5a);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #1e6b5a, #125849);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(18, 88, 73, 0.3);
}

/* RESPONSIVE DESIGN - MOBILE FIRST APPROACH */

/* Tablet Styles - 1024px and below */
@media (max-width: 1024px) {
    .csr-page .container {
        padding: 0 30px !important;
    }
    
    .csr-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .csr-hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .focus-areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partnerships-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .involvement-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .csr-contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* Mobile Styles - 768px and below */
@media (max-width: 768px) {
    .csr-page .container {
        padding: 0 20px !important;
    }
    
    .csr-hero {
        padding: 80px 0 100px !important;
    }
    
    .csr-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-description p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .csr-hero-image img {
        height: 300px;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .focus-areas-section,
    .impact-stats-section,
    .recent-initiatives-section,
    .partnerships-section,
    .get-involved-section,
    .csr-contact-section {
        padding: 80px 0 !important;
    }
    
    .focus-area-card {
        padding: 40px 30px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .impact-card {
        padding: 30px 25px;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .partnership-types {
        gap: 20px;
    }
    
    .partnership-text h3{
        font-size: 1.8rem !important;
    }
    
    .partnership-type {
        padding: 15px;
    }
    
    .involvement-card {
        padding: 40px 30px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small Mobile Styles - 480px and below */
@media (max-width: 480px) {
    .csr-page .container {
        padding: 0 15px !important;
    }
    
    .csr-hero {
        padding: 60px 0 80px !important;
    }
    
    .csr-hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .focus-areas-section,
    .impact-stats-section,
    .recent-initiatives-section,
    .partnerships-section,
    .get-involved-section,
    .csr-contact-section {
        padding: 60px 0 !important;
    }
    
    .focus-area-card {
        padding: 30px 25px;
    }
    
    .focus-icon {
        font-size: 3rem;
    }
    
    .focus-area-card h3 {
        font-size: 1.5rem;
    }
    
    .impact-card {
        padding: 25px 20px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .involvement-card {
        padding: 30px 25px;
    }
    
    .contact-info h2 {
        font-size: 1.6rem !important;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .csr-page {
        font-size: 12pt;
        line-height: 1.4;
        color: #000 !important;
        background: white !important;
    }
    
    .csr-hero,
    .impact-stats-section {
        background: white !important;
        color: #000 !important;
    }
}

/* Performance Optimization */
.focus-area-card,
.impact-card,
.initiative-card,
.involvement-card {
    will-change: transform, box-shadow;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .focus-area-card,
    .impact-card,
    .initiative-card,
    .involvement-card,
    .involvement-button,
    .submit-button {
        transition: none !important;
    }
}

/* Focus Styles for Keyboard Navigation */
.involvement-button:focus,
.submit-button:focus,
.csr-form input:focus,
.csr-form select:focus,
.csr-form textarea:focus {
    outline: 3px solid #125849;
    outline-offset: 2px;
}
/* MetForm Custom Styling for CSR Contact Form */

/* Override MetForm container */
.csr-contact-section .mf-input-wrapper {
    margin-bottom: 20px;
}

/* Style form rows to display side by side */
.csr-contact-section .elementor-column {
    margin-bottom: 0 !important;
}

/* Input fields styling */
.csr-contact-section input[type="text"],
.csr-contact-section input[type="email"],
.csr-contact-section select,
.csr-contact-section textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.csr-contact-section input[type="text"]:focus,
.csr-contact-section input[type="email"]:focus,
.csr-contact-section select:focus,
.csr-contact-section textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Remove MetForm default labels if you want placeholder-only design */
.csr-contact-section .mf-input-label {
    display: none; /* Remove this line if you want to keep labels */
}

/* Submit button styling */
.csr-contact-section .mf-btn-wraper button,
.csr-contact-section button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.csr-contact-section .mf-btn-wraper button:hover,
.csr-contact-section button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Form grid layout - make fields appear side by side */
.csr-contact-section .elementor-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Make textarea and last fields full width */
.csr-contact-section .mf-input-wrapper:has(textarea),
.csr-contact-section .mf-btn-wraper {
    grid-column: 1 / -1;
}

/* Responsive design */
@media (max-width: 768px) {
    .csr-contact-section .elementor-row {
        grid-template-columns: 1fr;
    }
}

/* Success/Error messages */
.csr-contact-section .mf-success-msg,
.csr-contact-section .mf-error-msg {
    padding: 12px;
    border-radius: 4px;
    margin-top: 15px;
}

.csr-contact-section .mf-success-msg {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.csr-contact-section .mf-error-msg {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Field validation errors */
.csr-contact-section .mf-input-wrapper .mf-error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}