.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    z-index: 9999;
}
.blackS{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.formP{
    width: 580px;
    height: 90%;
    background-color: white;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.textForm{
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: rgb(24, 24, 24);
}
.inputForm{
    margin-top: 24px;
    width: 90%;
}
.titleInput{
    margin-left: 4px;
    font-weight: 600;
    color: #662D91;
}
.inputForm input{
    margin-top: 4px;
    width: 100%;
    height: 36px;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 8px;
    font-size: 18px;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
}
.inputForm input:focus{
    outline: none;
}
.rowInputs{
    display: flex;
    align-items: center;
    width: 90%;
}
.rowInputs .inputForm{
    width: 100%;
}
.rowInputs .inputForm:first-child{
    margin-right: 12px;
}
.selectForm{
    width: 90%;
    margin-top: 24px;
}
.selectForm select{
    width: 100%;
    margin-top: 4px;
    height: 36px;
    background-color: transparent;
    border: 1px solid rgb(206, 206, 206);
    border-radius: 8px;
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
    color: rgb(49, 49, 49);
}
.selectForm select:focus{
    outline: none;
}
.rowInputs .selectForm{
    width: 100%;
}
.btnForm{
    margin-top: auto;
    width: 90%;
}
.btnForm button{
    width: 100%;
    height: 42px;
    background-color: #662D91;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: 0px;
    cursor: pointer;
}
.btnForm button:disabled{
    opacity: 0.4;
    cursor: not-allowed;
}

.alertPopup{
    position: absolute;
    width: 640px;
    height: 420px;
    background-color: white;
    border-radius: 18px;
    box-shadow: 0px 0px 12px 4px rgb(54, 54, 54);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    border: 2px solid #662D91;
    transition: all 0.4s;
    z-index: 4;
}
.iconAlert img{
    width: 180px;
    height: 180px;
    object-fit: contain;
}
.textAlert{
    margin-top: 36px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    width: 90%;
}

@media screen and (max-width: 980px){
    .formP{
        width: 85%;
        padding-top: 42px;
        padding-bottom: 42px;
        height: 80%;
    }
    .textForm{
        font-size: 42px;
        margin-bottom: 48px;
    }
    .inputForm{
        margin-top: 48px;
    }
    .titleInput{
        font-size: 28px;
    }
    .inputForm input{
        height: 68px;
        font-size: 30px;
    }
    .rowInputs{
        flex-direction: column;
    }
    .selectForm{
        margin-top: 48px;
    }
    .selectForm select{
        height: 68px;
        font-size: 30px;
    }
    .btnForm button{
        height: 76px;
        font-size: 34px;
    }

    .alertPopup{
        width: 780px;
        height: 560px;
    }
    .iconAlert img{
        width: 320px;
        height: 320px;
    }
    .textAlert{
        font-size: 38px;
    }
}