@font-face {
    font-family: 'NataSans';
    src: url('NataSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'NataSans-Regular';
    src: url('NataSans-Regular.ttf?v=1') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Soft radial blobs blended together, animated via background-position/size */
    background:
      radial-gradient(42% 60% at 20% 30%, rgba(0,198,91,0.55), transparent 65%),
      radial-gradient(35% 50% at 80% 20%, rgba(0,103,91,0.45), transparent 60%),
      radial-gradient(50% 70% at 60% 80%, rgba(0,198,91,0.35), transparent 65%),
      linear-gradient(135deg, #00675B 0%, #00C65B 50%, #004D3A 100%); /* your brand colors */
    background-blend-mode: screen, screen, screen, normal;
    background-size: 140% 140%, 160% 160%, 180% 180%, 100% 100%;
    background-position: 0% 0%, 100% 0%, 0% 100%, 50% 50%;
    animation: waveShift 7s ease-in-out infinite alternate;
    min-height: 100vh;
}

@keyframes waveShift {
    0% {
        background-size: 140% 140%, 160% 160%, 180% 180%, 100% 100%;
        background-position: 0% 0%, 100% 0%, 0% 100%, 50% 50%;
        filter: saturate(1);
    }
    50% {
        background-size: 180% 180%, 120% 120%, 220% 220%, 100% 100%;
        background-position: 30% 30%, 70% 5%, 5% 70%, 50% 50%;
        filter: saturate(1.1);
    }
    100% {
        background-size: 200% 200%, 140% 140%, 160% 160%, 100% 100%;
        background-position: 15% 50%, 85% 15%, 25% 85%, 50% 50%;
        filter: saturate(1);
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Signup form */
.signup-section {
    background: white;
    border-radius: 16px;
    padding: 1.2rem; /* Reduced from 1.5rem to 1.2rem */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Reduced from 1rem to 0.8rem */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    padding: 0.6rem 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Checkbox styles */
.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
    accent-color: #667eea;
}

/* Privacy text styling */
.privacy-text {
    text-align: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0.1rem 0;
    line-height: 1.4;
}

.privacy-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Submit button */
.submit-btn {
    background: linear-gradient(135deg, #00C65B 0%, #00675B 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading spinner */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message */
.success-message {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    color: #166534;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #166534;
}

.success-message p {
    color: #166534;
    opacity: 0.8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 0.5rem 0; /* Reduced from 2rem 0 to 1.5rem 0 */
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .signup-section {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .signup-section {
        padding: 1.5rem 1rem;
        margin: 0 5px;
    }
} 
/* Two Column Layout Styles */
.two-column-layout {
    display: flex;
    min-height: calc(100vh - 120px);
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.right-column {
    flex: 1;
    max-width: 500px;
}

.logo-section {
    margin-bottom: 1.1rem; /* Reduced from 3rem to 1.5rem */
    text-align: left; /* Add left alignment */
    margin-left: -0.9rem; /* Move logo further left to align with title */
}

.logo {
    height: 70px;
    width: auto;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white; /* Changed back to white */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Changed shadow back to black */
}

.main-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9); /* Changed back to white with opacity */
    line-height: 1.6;
    max-width: 500px;
}

.signup-text {
    display: block;
    margin-top: 0.8rem; /* Slightly bigger than a line break */
}

/* Responsive Design for Two Columns */
@media (max-width: 1024px) {
    .two-column-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .left-column {
        padding-right: 0;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .two-column-layout {
        padding: 1rem;
        gap: 2rem;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .main-description {
        font-size: 1.1rem;
    }
    
    .logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
}

/* Privacy Policy Page - White Background */
body.privacy-page {
    background: white;
    color: #333;
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
