.container{
    width :29%;
    margin: auto;
    padding: 20px;
    border-radius: 20px;   
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
input{
    width: 90%;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
}
select{
    width: 96%;
    border: 0;
}
.fb{
    display: flex;
    align-items: center;
    justify-content:center ;
    color: white;
    background-color: blue;
    border-radius: 10px;
    height: 40px;
}
.fb>img{
    width: 30px;
    height: 30px;
}
.gl{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content:center ;
    border-radius: 10px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.gl>img{
    width: 30px;
    height: 30px;
}
button{
    text-align: center;
    width: 96%;
    padding: 10px;
    margin: 5px;
    color: white;
    background-color: rgb(199, 76, 76);
    border-radius: 10px;
}
button:hover{
    background-color: rgb(140, 184, 19);
    color: rgb(189, 37, 37);
}
p{
    text-align: center;
    color: gray;
    font-weight: 100;
}
span{
    color: grey;
}
.ar{
    text-align: center;
}
@media (max-width:650px){
    .container{
        width :49%;
        margin: auto;
        padding: 20px;
        border-radius: 20px;   
        box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
        margin-top: 6rem;
    }

    .fb{
        display: flex;
        align-items: center;
        justify-content:center ;
        color: white;
        background-color: blue;
        border-radius: 10px;
        height: 40px;
        font-size: small;
        gap:4px;
    }
    .fb>img{
        width: 25px;
        height: 25px;
    }
    .gl{
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content:center ;
        border-radius: 10px;
        height: 40px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        font-size: small;
        gap:10px
    }
    .gl>img{
        width: 15px;
        height: 15px;
    }
    input{
        width: 96%;
        padding: 10px;
        margin: 5px 0 0 -5px;
        border-radius: 10px;
    }

    select{
        width: 100%;
        border: 0;
        padding:8px
    }
    button{
        text-align: center;
        width: 110%;
        padding: 10px;
        margin: 5px 0 0 -5px;
        color: white;
        background-color: rgb(199, 76, 76);
        border-radius: 10px;
    }
}