.modal {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh !important;
    overflow: hidden !important;
    
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 25px 60px;
    border-radius: 8px;
    width: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    gap: 10px;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
    width: 100%;
    display: flex;
    justify-content: end;
}

.close:hover {
    color: #514e51;
}

.login-btn {
    background-color: #FF66C4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;  
}

.login-btn:hover {
    background-color: #FF66C4;
}

.form-container h2{
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.section__form figure{
    width: 200px;
    margin: 0 auto;
    border-radius: 50%;
}

.section__form figure i{
    width: 100%;
    height: 100%;
}

.section__form{
    display: flex;
    flex-direction: column;
}

.section__form-item{
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    margin: 10px;
    border-radius: 15px;
}

.section__form button{
    background-color: #FF66C4;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    padding: 10px;
    width: 20%;
    margin: 0 auto;
    font-weight: 600;
    margin-top: 25px;
}

.section__form-item input{
    height: 45px;
    width: 100%;
    border: none;
    background-color: #ecf0f1;
    outline: none;
}

.icon-modify {  
    color: #7f8c8d;
    padding: 0 5px;
}