/* ===== Request Form ===== */

.corex-form .form-group {
    position: relative;
}

.corex-form input,
.corex-form select,
.corex-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e3e3e3;
    background: #fff;
    font-size: 14px;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Focus */
.corex-form input:focus,
.corex-form select:focus,
.corex-form textarea:focus {
    border-color: #1dacff;
    box-shadow: 0 0 0 3px rgba(29, 172, 255, 0.1);
}

/* Select arrow fix */
.corex-form select {
    appearance: none;
    cursor: pointer;
}

/* Textarea */
.corex-form textarea {
    resize: none;
}

/* File input */
.corex-form .file-input input {
    padding: 10px;
    border: 2px dashed #ccc;
    background: #f9f9f9;
}

/* Hover */
.corex-form input:hover,
.corex-form select:hover,
.corex-form textarea:hover {
    border-color: #1dacff;
}

/* Button spacing */
.corex-form .button-1 {
    margin-top: 10px;
}