/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: ##F0F2F5; /* Light gray background */
}

.form-container {
    max-width: 650px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Unused multi-step styles commented out */
/*
.form-step {
    display: none;
}

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

.progress-bar {
    background-color: #f0051c;
    transition: width 0.3s ease-in-out;
}
*/

.form-control, .form-select {
    border-radius: 8px;
    padding: 12px;
}

/* Ensure textarea resizes vertically only */
textarea.form-control {
    resize: vertical;
    min-height: 120px; /* Give it a decent minimum height */
}

.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-primary {
    background-color: #f0051c;
    border-color: #f0051c;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #d90418; /* A slightly darker red for hover/focus */
    border-color: #c40416;
}