/* General Page Styling */
body {
    background-color: #f8f9fa;
    /* font-family: 'Arial', sans-serif; */
}

/* Form Container */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 100px;
}

/* Section Heading */
h5 {
    font-weight: bold;
    color: #333;
}

/* Labels */
.form-label {
    font-weight: 600;
    color: #555;
}

/* Input Fields */
.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    transition: border 0.3s ease-in-out;
}

/* Input Focus Effect */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Required Field Asterisk */
.text-danger {
    font-size: 14px;
}

/* Save Button */
.btn-save {
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-save:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        margin-top: 70px;
        padding: 20px;
    }

    .btn-save {
        width: 100%;
    }
}
