/* Universal Form Styling */
 

.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 14px;
    color: var(--slate);
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    /* ADDED LINE-HEIGHT FOR BETTER READABILITY */
    line-height: 1.6; 
}

/* Focus State: When the user clicks into a box */
.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.05);
}

/* Specific Dropdown Style with Right Margin for Arrow */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="%23635bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center; 
    background-size: 16px;
    padding-right: 45px; 
    cursor: pointer;
    /* ENSURES THE SELECT BOX HEIGHT ACCOMMODATES THE LINE-HEIGHT */
    height: 56px; 
}

/* THE DROPDOWN ROWS: Adding line spacing to the options */
.form-select option {
    padding: 12px;
    line-height: 1.2; /* Vertical space between rows in the dropdown */
}
 
/* Textarea specific height */
.form-textarea {
    min-height: 150px;
    resize: vertical;
}
