.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup.flex{
    display: flex;
}
.container-fluid {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden;
    overflow-y: auto; */
    z-index: 1000;
}

.form-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: fit-content;
    padding: 2rem;
    background-color: white;
    overflow: auto;
}

.form-container__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container__close-button{
    position: absolute;
    top: 0;
    right: 5px;
    padding: 10px;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
}

.form-container__group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-container__radio-group {
    display: flex;
    gap: 30px;
}

.form-container__radio-label {
    display: flex;
}

.form-container__group-label {
    font-weight: 500;
}

.form-container__input,
.form-container__select,
.form-container__radio-group {
    width: 60%;
    padding: 0.5rem;
}

.form-container__input,
.form-container__select {
    outline: none;
}

.form-container__checkbox-group-label {
    font-weight: bold;
}

.form-container__action {
    display: flex;
    justify-content: center;
}

.form-container__button {
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #10397B;
}

@media (max-width:600px) {
    .container-fluid {
        height: 100vh;
        padding: 0.5rem 0.5rem;
    }

    .form-container__form{
        gap: 10px;
    }

    .form-container__group {
        flex-direction: column;
        align-items: start;
        gap: 2px;
    }

    .form-container__input,
    .form-container__select,
    .form-container__radio-group {
        width: 100%;
        padding: 0rem;
    }
}