.apply-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Floating Label Input */
.floating-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-input,
.floating-select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: transparent;
    font-size: 15px;
    transition: 0.25s;
}

.floating-group label {
    position: absolute;
    top: 12px;
    left: 16px;
    color: #666;
    font-size: 15px;
    transition: 0.25s;
    background: white;
    padding: 0 6px;
}

.floating-input:focus,
.floating-select:focus,
textarea:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0,123,255,0.3);
}

.floating-input:focus + label,
.floating-input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label,
.floating-select:focus + label,
.floating-select:not([value=""]) + label {
    top: -9px;
    left: 12px;
    font-size: 12px;
    color: #007bff;
}

/* Submit Button */
.apply-btn {
    background: #0069ff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 10px;
    font-size: 17px;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #004fc9;
}