
    .form-body {
        background-color: #dcdcdc;
        border-radius: 0.5rem;
        padding: 2rem;
        margin: 20px auto;
        max-width: 600px;
    }

    /* Header paragraph style */
    div > p:first-child {
        font-size: 1.25rem;
        font-weight: bolder;
        margin-bottom: 1.5rem;
    }

    /* Label styles */
    form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        font-size: 14px;
        color: #333333; /* Default label color for inside fieldsets */
        padding: 0 0.5rem;
    }

    /* Input and textarea styles */
    form input[type="text"],
    form input[type="email"],
    form input[type="password"],
    form input[type="number"],
    form textarea,
    form select {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 1rem;
        border: 1px solid #ccc;
        border-radius: 0.5rem;
        box-sizing: border-box;
        font-size: 1rem;
    }

    /* Checkbox styles */
    form input[type="checkbox"] {
        margin-right: 0.5rem;
    }

    /* Fieldset styles */
    fieldset {
        background-color: #979797;
        border: 1px solid #ccc;
        border-radius: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .fieldset-label {
        font-size: 18px;
        font-weight: 500;
        color: #777777;
        border-radius: 0.5rem;
        padding: 0.5rem;
        margin-bottom: 0;
    }

    .form-check-container{
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: baseline;
        gap: 0.5rem;
        .checkbox-label{
            font-size: 1rem;
        }
    }


    /* Override label color inside fieldsets */
    fieldset label {
        color: #ffffff;
    }

    /* Submit button styles */
    form input[type="submit"] {
        background-color: #333333;
        color: #ffffff;
        padding: 1rem 2rem;
        border: none;
        border-radius: 0.5rem;
        font-size: 1.25rem;
        cursor: pointer;
    }

    form input[type="submit"]:hover {
        background-color: #535353;
    }


    /*MODAL*/
    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100% !important;
        max-width: 100% !important;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.4);
        padding-top: 60px;
    }
    .modal-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 50%;
        border-radius: 0.5rem;
    }
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    .title {
        padding-top: 0.5rem;
        font-size: 20px;
        font-weight: 500;
        color: #333333;
    }
    .title.error {
        color: #970000;
    }
    .button-container{
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .btn-close {
        margin-top: 0.5rem;
        background-color: #333333;
        color: #ffffff;
        padding: 1rem 2rem;
        border: none;
        border-radius: 0.5rem;
        font-size: 1.25rem;
        cursor: pointer;
    }

    .btn-close:hover {
        background-color: #535353;
    }