.chatgpt-form-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

.chatgpt-form {
    width: 100%;
    max-width: 100%;
    margin: 40px 0;
    position: relative;
}

.chatgpt-form .form-field {
    margin-bottom: 40px;
    position: relative;
}

.chatgpt-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
    color: #333;
    line-height: 1.4;
}

.chatgpt-form input[type="text"],
.chatgpt-form input[type="email"],
.chatgpt-form input[type="tel"],
.chatgpt-form input[type="number"],
.chatgpt-form input[type="url"],
.chatgpt-form input[type="date"],
.chatgpt-form textarea,
.chatgpt-form select {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    line-height: 1.5;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #ddd;
    background: transparent;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    font-family: inherit;
}

.chatgpt-form textarea {
    min-height: 150px;
}

.chatgpt-form .submit-button {
    background: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.chatgpt-form .submit-button:disabled {
    background: #ccc;
}

.chatgpt-form .form-response {
    background: transparent !important;
    padding: 20px 0;
    margin-bottom: 20px;
    white-space: pre-wrap;
    line-height: 1.6;
}

.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.form-step.active {
    display: block;
    opacity: 1;
}

.step-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.step-buttons {
    display: flex;
    gap: 10px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 8px;
}

.step-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.step-dot.active {
    background: #0073aa;
    transform: scale(1.3);
}

.prev-step,
.next-step {
    background: transparent;
    border: 1px solid #0073aa;
    color: #0073aa;
    padding: 20px 50px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.prev-step:hover,
.next-step:hover {
    background: #0073aa;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.submit-button {
    display: none;
}

.submit-button.visible {
    display: inline-block;
}

/* Loading animation */
.form-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.form-loading.active {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.form-success-container {
    text-align: left;
    margin-top: 40px;
}

.form-response {
    background: transparent !important;
    padding: 30px 0;
    margin: 30px 0;
    white-space: pre-wrap;
    line-height: 1.8;
    font-size: 16px;
}

.new-form-button {
    background: #0073aa;
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.new-form-button:hover {
    background: #005177;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.chatgpt-form.hidden {
    display: none;
}

/* Add these styles */
.chatgpt-form .field-options {
    margin-top: 10px;
    width: 100%;
}

.chatgpt-form .options-list {
    width: 100%;
    min-height: 60px;
}

.chatgpt-form .radio-option,
.chatgpt-form .checkbox-option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.chatgpt-form .radio-option label,
.chatgpt-form .checkbox-option label {
    margin-left: 12px;
    font-size: 18px;
    cursor: pointer;
}

.chatgpt-form input[type="email"],
.chatgpt-form input[type="tel"],
.chatgpt-form input[type="number"],
.chatgpt-form input[type="url"],
.chatgpt-form input[type="date"],
.chatgpt-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.chatgpt-form input.error {
    border-color: #dc3232;
}

.chatgpt-form .field-error {
    color: #dc3232;
    font-size: 14px;
    margin-top: 8px;
    display: block;
}

/* Style just the text color for different states */
.form-response.success {
    color: #0073aa;
}

.form-response.error {
    color: #dc3232;
} 