.select-backdrop {
    position: fixed;
    z-index: 2;
    background: #0F1822A6;
    backdrop-filter: blur(4px);
    width: 100dvw;
    height: 100vh;
    /*display: flex;*/
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.select-backdrop .caps-text {
    font-size: 24px;
    font-weight: 600;
}

.select-window, .sign-up-physician, .sign-up-dme {
    background: #fff;
    padding: 32px 126px;
    /*display: block;*/
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    overflow-y: auto;
}

.select-form {
    display: flex;
    gap: 16px;
    margin: 32px 0 40px;
}

.select-form-container {
    width: 190px;
    height: 50px;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    background: #EDF6FA;
    font-size: 20px;
    font-weight: 600;
    padding-left: 32px;
}

.select-form-container input {
    width: 20px;
    height: 20px;
    border: 1px solid #0069A8;
    margin-top: 2px;
}

.sign-up-physician, .sign-up-dme {
    padding: 32px 77px;
    max-width: 650px;
}


.form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.two-columns > .form-group {
    flex: 1 1 45%;
}

.form-group {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #0F18224D !important;
    border-radius: 4px !important;
    font-family: Source Sans Pro;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 130%;
}

textarea {
    min-height: 120px;
}

label {
    color: #0F1822;
    font-size: 14px;
    font-weight: 600;
    font-family: "Source Sans Pro";
    line-height: 130%;
}

.form-text {
    text-align: center;
    margin-bottom: 24px !important;
    font-size: 16px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.wpcf7 form>div {
    margin-bottom: 0;
}

.sing-up-dme .sign-up-button-modal, .sign-up-button-modal,
.sign-up-dme button {
    width: unset !important;
}

.login-text {
    padding: 16px 0 32px;
    text-align: center;
}

.blue-text p {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    color: #0069A8;
    margin-top: 12px;
}

label br:last-child {
    display: none;
}

.sign-up-physician form, .sign-up-dme form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {

    .select-backdrop {
        padding: 24px 16px;
    }

    .select-window, .sign-up-physician, .sign-up-dme {
        padding: 32px 24px;
        width: 100%;
        overflow-y: auto;
    }

    .sign-up-physician, .sign-up-dme {
        box-sizing: border-box;
    }

    .sign-up-physician {
        margin-top: -20px;
    }

    .select-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .select-form-container {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
}