@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #faf5ff 100%);
    min-height: 100vh;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 2rem 1rem;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

/* Form Section */
.form-section {
    order: 1;
    padding-top: 2rem;
    position: relative;
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: #fff;     /* #2563eb */
    background-color: #ED3324; /* rgba(59, 130, 246, 0.1); */
}

.nav-link svg {
    flex-shrink: 0;
}

.form-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.required {
    color: #ef4444;
}

.optional {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #fca5a5;
    background-color: #fef2f2;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    width: 100%;
    padding-right: 3rem;
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
}

.file-upload {
    position: relative;
    border: 2px dashed #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.file-upload:hover {
    border-color: #d1d5db;
}

.file-upload.error {
    border-color: #fca5a5;
    background-color: #fef2f2;
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
    padding: 0;
}

.file-upload-content {
    pointer-events: none;
}

.upload-icon {
    margin: 0 auto 0.75rem;
    color: #9ca3af;
}

.upload-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.upload-subtext {
    font-size: 0.75rem;
    color: #9ca3af;
}

.file-selected .upload-text {
    color: #059669;
    font-weight: 600;
}

.error-message {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.submit-btn {
    background: linear-gradient(135deg, #ED3324 0%, #F68422 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #F68422 0%, #ED3324 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.submit-btn.loading .loading-spinner {
    display: block;
}

.submit-btn.loading .btn-text {
    display: none;
}

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

/* Content Section */
.content-section {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
}

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-right: 0.75rem;
}

.logo-icon svg {
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.video-section {
    margin-bottom: 2rem;
}

.video-placeholder {
    background: linear-gradient(135deg, #F68422 0%, #F68422 100%);
    aspect-ratio: 16/9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.video-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}

.video-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.video-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.play-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-button svg {
    color: white;
}

.video-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.content-text {
    text-align: left;
}

.main-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-content p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.feature-icon.green {
    background-color: #dcfce7;
    color: #16a34a;
}

.feature-icon.blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.feature-icon.purple {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.feature-icon.orange {
    background-color: #fed7aa;
    color: #ea580c;
}

.feature-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.special-offer {
    background: linear-gradient(135deg, #f0f9ff 0%, #faf5ff 100%);
    border-radius: 1rem;
    padding: 1.5rem;
}

.special-offer h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.special-offer p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem 3rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .form-section {
        order: 2;
        padding-top: 1rem;
    }
    
    .content-section {
        order: 1;
        padding-top: 1rem;
    }
    
    .content-wrapper {
        text-align: left;
    }
    
    .logo-section {
        justify-content: flex-start;
    }
    
    .form-card {
        padding: 3rem;
    }
    
    .form-header h1 {
        font-size: 3rem;
    }
    
    .main-content h3 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


  .alert-success {
           
          background-color: #dff0d8;
          border-left: 6px solid green;
          color: #333;
          padding: 15px 30px;
          margin: 10px 0;
          border-radius: 4px;
          font-size: 17px;
          
        }

        .alert-error {
          background-color: #ffdddd;
          border-left: 6px solid #f44336;
          color: #333;
          padding: 15px 30px;
          margin: 10px 0;
          border-radius: 4px;
          font-size: 15px;
          
      }