/* Form styles */
.success-message {
    background-color: #f0f8f0;
    border-left: 4px solid #006633;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message h3 {
    color: #006633;
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
}

.success-message p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

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

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

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #006633;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 102, 51, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background-color: #006633;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #005528;
}