.form-subtitle {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.dev-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #b45309;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.clarity-banner {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-left: 5px solid #3b82f6;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #1e40af;
    line-height: 1.6;
}

.clarity-banner p {
    margin: 0;
}

.clarity-banner strong {
    font-weight: 700;
}

.form-content {
    flex: 1;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

body {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.main-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Features Panel - Left Side */
.features-panel {
    flex: 1;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 40px 50px;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-content {
    max-width: 400px;
}

.features-title {
    font-size: 32px;
    color: white;
    margin-bottom: 40px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: slideIn 0.6s ease;
}

.feature-icon {
    font-size: 36px;
    flex-shrink: 0;
    display: block;
}

.feature h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 700;
}

.feature p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Form Panel - Right Side */
.form-panel {
    flex: 1;
    background: #ffffff;
    padding: 0;
    overflow-y: auto;
    display: flex;
    align-items: stretch;
}

.form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 60px;
    max-width: 500px;
    margin: auto;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
    animation: slideUp 0.6s ease;
}

.logo {
    font-size: 36px;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.form-title {
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-subtitle {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Success Container */
.success-container {
    text-align: center;
    animation: slideUp 0.6s ease;
}

.success-icon {
    font-size: 72px;
    animation: scaleIn 0.6s ease;
    display: block;
    margin-bottom: 20px;
}

.success-container h2 {
    font-size: 28px;
    color: #059669;
    margin-bottom: 12px;
    font-weight: 700;
}

.success-info {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-left: 5px solid #3b82f6;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin: 20px 0;
}

.success-info h4 {
    color: #1e40af;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
}

.success-info ul {
    list-style: none;
}

.success-info li {
    color: #374151;
    font-size: 13px;
    line-height: 1.8;
    margin: 8px 0;
}

.launch-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
}

.launch-box p {
    color: #6b5b0f;
    font-size: 13px;
    line-height: 1.8;
    margin: 6px 0;
}

.launch-box strong {
    color: #b45309;
    font-weight: 700;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2937;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f9fafb;
    color: #1f2937;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.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.08);
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Alerts */
.alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    animation: slideUp 0.3s ease;
    line-height: 1.5;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #059669;
}

.alert-danger {
    background-color: #fee2e2;
    color: #7f1d1d;
    border-left: 4px solid #dc2626;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25);
    width: 100%;
    padding: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn-submit {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    width: 100%;
    padding: 14px;
    font-size: 15px;
    margin-top: 10px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-submit:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-top: 14px;
    line-height: 1.5;
}

/* Scrollbars */
.form-panel::-webkit-scrollbar {
    width: 8px;
}

.form-panel::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.form-panel::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

.form-panel::-webkit-scrollbar-thumb:hover {
    background: #1e40af;
}

.features-panel::-webkit-scrollbar {
    width: 8px;
}

.features-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.features-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.features-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Tablet - Single Column */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .features-panel {
        flex: 0 auto;
        padding: 30px;
        min-height: auto;
        max-height: 200px;
    }

    .features-content {
        max-width: 100%;
    }

    .features-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .features-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 8px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .feature h4 {
        font-size: 13px;
    }

    .feature p {
        font-size: 12px;
    }

    .form-panel {
        flex: 1;
        padding: 20px;
    }

    .form-wrapper {
        padding: 30px 40px;
        max-width: 100%;
    }

    .logo {
        font-size: 28px;
    }

    .form-title {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-container {
        height: auto;
        min-height: 100vh;
    }

    .features-panel {
        max-height: 250px;
        padding: 25px 20px;
    }

    .features-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature h4 {
        font-size: 12px;
    }

    .feature p {
        font-size: 11px;
    }

    .form-panel {
        min-height: auto;
    }

    .form-wrapper {
        padding: 25px 20px;
    }

    .logo {
        font-size: 24px;
    }

    .form-title {
        font-size: 20px;
    }

    .form-subtitle {
        font-size: 13px;
    }

    .success-icon {
        font-size: 60px;
    }

    .success-container h2 {
        font-size: 24px;
    }

    .success-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-container {
        height: auto;
    }

    .features-panel {
        max-height: 300px;
        padding: 20px 15px;
    }

    .features-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .feature {
        flex-direction: row;
        text-align: left;
    }

    .feature-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .feature h4 {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .feature p {
        font-size: 10px;
    }

    .form-wrapper {
        padding: 20px 15px;
        margin: 0;
    }

    .form-header {
        margin-bottom: 20px;
    }

    .logo {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .form-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .form-subtitle {
        font-size: 12px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .success-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .success-container h2 {
        font-size: 20px;
    }

    .success-info,
    .launch-box {
        padding: 15px;
        font-size: 12px;
    }
}