/*
Theme Name: Pennyzo Theme
Author: Gemini
Description: A custom theme for the Pennyzo website.
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #0a0a0a;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d4af37;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #d4af37;
}

/* Mobile menu active state - removed conflicting styles */

.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.cta-nav {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000 !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-nav:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f5f5f5;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-bottom: 2px solid #d4af37;
    animation: backgroundPan 20s ease infinite;
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    .preview-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 100px 15px 50px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

@keyframes backgroundPan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.preview-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    border: 1px solid #d4af37;
    color: #d4af37;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    border-color: #ffd700;
}

/* Why Pennyzo Section */
.why-pennyzo {
    padding: 80px 0;
    background: #111111;
    border-bottom: 1px solid #333;
}

.why-pennyzo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
    color: #f5f5f5;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 1.5rem;
    color: #d4af37;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0a0a0a;
    border-bottom: 1px solid #333;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: sepia(1) hue-rotate(35deg) saturate(2) brightness(1.2);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    backdrop-filter: blur(8px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a); /* Darker gradient background */
    margin: auto;
    padding: 40px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative;
    color: #eee;
    animation: fadeIn 0.3s ease-out;
    border: 2px solid #FFD700; /* Golden border */
}

.modal-content h3 {
    font-size: 2.5em;
    color: #FFD700; /* Golden color for titles */
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.modal-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #ccc;
    text-align: center;
}

.close-button {
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.close-button:hover,
.close-button:focus {
    color: #FFD700;
    text-decoration: none;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 30px;
    }

    .modal-content h3 {
        font-size: 2em;
    }

    .modal-content p {
        font-size: 1em;
    }

    .close-button {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
    }

    .modal-content h3 {
        font-size: 1.8em;
    }

    .modal-content p {
        font-size: 0.95em;
    }
}


/* Founding Benefits Section */
.founding-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #f5f5f5;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

.founding-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item-large {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.benefit-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.benefit-item-large h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.benefit-item-large p {
    opacity: 0.9;
    line-height: 1.5;
    color: #cccccc;
}

.benefit-item-large:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.1);
}

@media screen and (max-width: 768px) {
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item-large {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .benefit-icon-large {
        margin-bottom: 1rem;
        font-size: 2.2rem;
    }

    .founding-benefits h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .benefit-item-large {
        padding: 1.2rem;
    }

    .benefit-item-large h3 {
        font-size: 1.2rem;
    }

    .benefit-item-large p {
        font-size: 0.9rem;
    }

    .benefit-icon-large {
        font-size: 2rem;
    }
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: #111111;
    border-bottom: 1px solid #333;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1.5rem;
}

.audience-item {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    font-weight: 600;
    color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: #0a0a0a;
    border-bottom: 1px solid #333;
}

.roadmap h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.roadmap-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.timeline-item.completed {
    background: linear-gradient(135deg, #1a2e1a, #2a3a2a);
    border-left: 4px solid #d4af37;
    border: 1px solid #d4af37;
}

.timeline-item.in-progress {
    background: linear-gradient(135deg, #2a2a1a, #3a3a2a);
    border-left: 4px solid #ffd700;
    border: 1px solid #ffd700;
}

.timeline-item.future {
    background: linear-gradient(135deg, #1a1a2a, #2a2a3a);
    border-left: 4px solid #b8860b;
    border: 1px solid #333;
}

.timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #f5f5f5;
}

.roadmap-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #d4af37;
    font-style: italic;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Waitlist Section */
.waitlist {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #f5f5f5;
    text-align: center;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

.waitlist h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.waitlist-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.waitlist-form {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.form-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-container input {
    flex: 1;
    min-width: 500px;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    background: #1a1a1a;
    color: #f5f5f5;
    transition: all 0.3s ease;
}

.form-container input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.social-proof {
    font-size: 1.1rem;
    opacity: 0.9;
}

.count {
    font-weight: 700;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Trust & Security Section */
.trust-security {
    padding: 60px 0;
    background: #111111;
    text-align: center;
    border-bottom: 1px solid #333;
}

.trust-security h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.trust-security p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* About Team Section */
.about-team {
    padding: 60px 0;
    background: #0a0a0a;
    text-align: center;
    border-bottom: 1px solid #333;
}

.about-team h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.about-team p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Social Media Section */
.social-media {
    padding: 60px 0;
    background: #111111;
    text-align: center;
    border-bottom: 1px solid #333;
}

.social-media h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.social-media p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    color: #d4af37;
    border-color: #d4af37;
}

/* Footer */
.footer {
    background: #000000;
    color: #f5f5f5;
    padding: 40px 0;
    border-top: 2px solid #d4af37;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
}




/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
    .hero-title {
        font-size: 3rem;
    }
    .features-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle.active {
        color: #ffd700;
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }
    
    .hero-logo img {
        height: 200px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .features-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .benefit-item-large {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon-large {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    .hero-logo img {
        height: 150px !important;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .preview-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
    }
    .section-description {
        font-size: 0.9rem;
    }
    .modal-content {
        width: 90%;
        padding: 1.5rem;
    }
}



.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.wpforms-field-label {    
    color: #d4af37  !important;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}



.wpforms-form input,
.wpforms-form select,
.wpforms-form textarea {
    color: #d4af37 !important;
}


.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
    width: 100% !important;
    padding: 10px;

}

.wpforms-form .wpforms-required-label {
    color: #ffcc00;
    margin-left: 5px;
}

.wpforms-form input[type="checkbox"],
.wpforms-form input[type="radio"] {
    accent-color: #ffcc00;
}

.wpforms-form label {
    color: #d4af37  !important;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}


.wpforms-form button[type="submit"] {
    background-color: #ffcc00 !important;   
    color: #000 !important;                 
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wpforms-form button[type="submit"]:hover {
    background-color: #e6b800 !important;  
}


.wpforms-form .wpforms-field-error {
    color: #ff0000 !important;
    font-size: 0.9rem;
    margin-top: 5px;
}

.wpforms-field-container {
    width: 500px !important;
}