body {
    background-image: url('/static/assets/nce_back.jpeg');
    background-size: auto;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 40px;
    padding: 40px;
    max-width: 800px;
    margin-bottom: 40px;
}

/* 8cbc3b */

.form-title {
    background-color: #0e8379;
    color: #fff;
    padding: 50px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    text-align: center;
    margin: -40px -40px 0px -40px;
    font-weight: 700;
    font-size: 1.5rem;
}

.section-heading {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
    padding: 40px;
}

.form-label {
    font-weight: 700;
}

.form-check-label {
    font-weight: 400;
    /* Normal weight for options */
}

.form-control,
.form-check-input {
    margin-bottom: 15px;
}

.form-button {
    background-color: #0e8379;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s;
    display: block;
    margin: 20px auto 0;
}

.form-button:hover {
    background-color: #005a2c;
}

textarea {
    resize: vertical;
}

#genderOtherField {
    display: none;
    margin-top: 15px;
}

.my-btn-success {
    background-color: white;
    color: #0e8379;
}

.my-btn-success:hover {
    color: #005a2c;
}