/* Container styling for the form */
.form-container-person {
    max-width: 1000px;
    margin: 0 auto; /* Center the form horizontally */
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9; /* Light background for improved readability */
}

/* Heading styling */
.form-container-person h1 {
    font-size: 22px;
    font-weight:unset;
    margin-bottom: 20px;
    text-align: center;
    color: #333; /* Darker color for contrast */
}

/* Styling for alert messages */
.alert {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

.alert.d-none {
    display: none; /* Initially hidden */
}

/* Label styling */
.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555; /* Neutral color */
}

/* Styling for textarea and input fields */
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

/* Button styling */
.btn-primary {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(135deg, rgb(48, 163, 157), rgb(26, 88, 88));
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #5dca4f;
}
section{
    display: flex;
}
/* Make the form responsive */
@media (max-width: 768px) {
    .form-container-person {
        padding: 15px;
    }

    .form-container-person h1 {
        font-size: 20px;
    }

    .btn-primary {
        font-size: 14px;
    }

    .form-control {
        font-size: 12px;
    }

}
