.phd-modal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2.5rem;
    border-radius: 8px;
    border: none;
    filter: var(--phd__filter-dropshadow);
    --filter__backdrop-blur: 0px;
    --opacity: 0;
}

.phd-modal::backdrop {
    background: rgba(35, 37, 40, .7);
    /*backdrop-filter: blur(var(--filter__backdrop-blur));*/
}

.phd-modal__close-btn{
    position: absolute;
    top: .2rem;
    right: .2rem;
    /*font-size: 1.5rem;*/
    /*cursor: pointer;*/
    /*background: none;*/
    /*border: none;*/
}



/* 🆑 ACTION MODAL*/

.phd-modal-action__content{

    --phd-modal-action__icon-size: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    /*padding: 1rem;*/
}
.phd-modal-action__icon{
    text-align: center;
    font-size: var(--phd-modal-action__icon-size);
    background-color: rgba(0, 161, 255, 0.67);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    width: min-content;
    padding: .5rem;
    margin-bottom: 1rem;
}
.phd-modal-action__title{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.phd-modal-action__subtitle{
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
    text-indent: unset;
    margin-top: -.5rem;
    white-space: pre-line;
}
.phd-modal-action__text{
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    text-indent: unset;
    white-space: pre-line;
}
.phd-modal-action__buttons-wrapper{
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ✳️ LOGIN MODAL*/
.phd-modal-login__content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    /*margin-bottom: 1.5rem;*/
    padding: 1rem;
    min-width: 400px;
}

.phd-modal-login__content h2{
    /*font-size: 1.5rem;*/
    font-weight: 600;
    text-align: start;
    width: 100%;
}
.phd-modal-login__subtitle{
    text-align: start;
    text-indent: unset;
    width: 100%;
}

.phd-modal-login__content a{
    width: 100%;
    text-align: start;
}
.phd-modal-login__content hr{
    width: 100%;
    margin-top: .5rem;
    margin-bottom: .3rem;
    color: #f3f3f3;
    opacity: .25;
}

.phd-modal-login__content .phd-checkbox{
    width: 100%;
    text-align: start;
    justify-content: start;
}

.phd-modal-login__btn-wrapper{
    display: flex;
    justify-content: start;
    gap: 1.5rem;
    flex-direction: column;
    padding: 1rem;
}

.phd-modal-login__btn-wrapper a{
    width: 100%;
    text-align: start;
}
