.add_Assignments_form {

    display: flex;
    position: fixed;
    flex-wrap: wrap;

    flex-direction: row;

    column-gap: 20px;
    row-gap: 20px;
    height: 400px;
    justify-content: center;

    margin: auto;

    width: 100%;
    height: 100%;



    background: rgba(45, 45, 45, 0.969);
    z-index: 30;
    transform: translate(-50%, -50%);
    left: 50%;
    top: -50%;

    display: none;
    transition-duration: 500ms;
    opacity: 0%;


}


.Form_btn_holder {
    padding-top: 40px;
    width: max-content;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    height: max-content;

}



.Menue_holder_form {
    height: 100%;
    background: none;
    width: 400px;
    text-align: center;


}



/* 

.assignment_holder_form {}

.App_settings {} */

#form_btn {
    background: none;
    border: 5px solid #1f1f1f5a;
    flex-wrap: wrap;
    display: flex;
    border-radius: 10px;
    padding: 10px;
    transition-duration: 500ms;
    color: rgb(191, 191, 191);
    cursor: pointer;
}

#form_btn:hover {
    border: 5px solid #c9c9c98d;
}


button[name="cancel"]:hover {
    color: rgb(137, 255, 243);
}


@media screen and (max-width: 740px) {


    .Form_btn_holder {
        width: max-content;
        flex-wrap: nowrap;
        display: inline-flex;
        flex-direction: row;
        column-gap: 20px;
        z-index: 11;
    }

}




:root {
    --main-color: rgb(100, 100, 100);
    --border-: 5px solid #1f1f1f5a;
}

.assigment_title {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    outline: none;
    padding-left: 10px;
    background: rgb(234, 234, 234);
    border: var(--border-);
    color: var(--main-color);


}

.assigment_title::placeholder {
    color: var(--main-color)
}

.add_close {
    width: max-content;
    height: max-content;
    border: var(--border-);
    background: none;
    color: var(--main-color);
}

.add_class:hover {
    background: rgb(62, 62, 62);
    color: rgb(255, 255, 255);
}