.iqitsociallogin{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 20px;
    gap: 20px;
}
.button-login{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.btn-facebook{
    background: #3b5998;
    border: 1px solid #3b5998;
    color: white;
    font-weight: 400;
    border-radius: 8px;
    padding: 9px 20px;
}
.btn-facebook:hover{
    background:white;
    color:#3b5998;
    border-color:#3b5998;
}
.btn-google{
    background: #db4437;
    border: 1px solid #db4437;
    color: white;
    font-weight: 400;
    border-radius: 8px;
    padding: 9px 20px;
}
.btn-google:hover{
    background:white;
    color:#db4437;
    border-color:#db4437;
}