/* IK Form Custom Styles */
.ik-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    margin: 0 auto;
    max-width: 850px;
}

.ik-form-wrapper .form-label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
    font-size: 14.5px;
}

.ik-form-wrapper .form-control {
    padding: 16px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    color: #475569;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
    margin-bottom: 25px;
}

.ik-form-wrapper .form-control:focus {
    border-color: #a82d49;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(168, 45, 73, 0.1);
    outline: none;
}

.ik-form-wrapper textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Custom File Upload Styling */
.custom-file-upload {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background-color: #fcfcfc;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.custom-file-upload:hover {
    border-color: #a82d49;
    background-color: #fdf2f4;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.file-upload-text i {
    font-size: 24px;
    color: #a82d49;
    margin-right: 12px;
}

.file-name-display {
    margin-left: auto;
    font-size: 14px;
    color: #a82d49;
    font-weight: 600;
    background: white;
    padding: 4px 10px;
    border-radius: 6px;
    display: none;
}

.ik-submit-btn {
    background-color: #a82d49;
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 8px 20px rgba(168, 45, 73, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 300px;
}

.ik-submit-btn:hover {
    background-color: #8c233b;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(168, 45, 73, 0.35);
}

.ik-submit-btn:disabled {
    background-color: #cbd5e1;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .ik-form-wrapper {
        padding: 30px 20px;
    }
}

