body{
    background-color: white;
}

#container{
    width:35%;
    height:600px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: auto;
    background-color: whitesmoke;
    border-radius: 10px;
}
#first{
    
    text-align: center;
    font-size: 30px;
    font-weight: 10px;
    color: deepskyblue;
    margin-top: 30px;
}
#second{
    width: 76%;
    height: 65px;
    display: flex;
    
    margin: auto;
    margin-top: 30px;
}
img{
    flex: 2;
    border-radius: 70px;
    margin-right: 5%;
    height: 65px;
}
#para1{
    flex: 8;
    margin-top: 0px;
    color: darkgray;
    font-size: 20px;
}
#user{
    width: 85%;
    height: 50px;
    margin-left: 7%;
    border-radius: 5px;
    margin-top: 5px;
}
#pass{
    width: 85%;
    height: 50px;
    margin-left: 7%;
    border-radius: 5px;   
}
span{
    color: deepskyblue;
    font-size: 20px;
    
}
#third{
    width: 85%;
    text-align: center;
    font-size: 20px;
    color: darkgray;
    margin-left: 7%;
}
#login{
    width: 80%;
    height: 40px;
    background-color: deepskyblue;
    margin-left: 10%;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    
}
#signup{
    width: 80%;
    height: 40px;
    background-color: deepskyblue;
    margin-left: 10%;
    font-size: 20px;
    border-radius: 5px;
    color: white;
}
@media only screen and (min-width:271px) and (max-width:730px){

    #container{
        width:100%;
        height:600px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        margin: auto;
        background-color: whitesmoke;
        border-radius: 10px;
    }
}

@media only screen and (min-width:0px) and (max-width:271px){

    #container{
        width:100%;
        height:600px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        margin: auto;
        background-color: whitesmoke;
        border-radius: 10px;
    }
     
    #first{
        width: 90%;
        text-align: center;
        font-size: 30px;
        font-weight: 10px;
        color: deepskyblue;
        margin-top: 40px;
    }
    #second{
        width: 90%;
        height: 65px;
        display: flex;
        flex-direction: column;
        
        margin: auto;
        margin-top: 30px;
    }
    
    #para1{
        width: 100%;
        align-content: center;
        margin-top: 0px;
        color: darkgray;
        font-size: 15px;
       
    }
    img{
        width:50%;
        align-items: center;
        border-radius: 70px;
        /* margin-right: 5%; */
        margin-left: 25%;
        height: 65px;
        margin-bottom: 20px;
    }

    #user{
        width: 90%;
        height: 40px;
        margin-left: 3%;
        border-radius: 5px;
        margin-top: 10px;
    }
    #pass{
        width: 90%;
        height: 40px;
        margin-left: 3%;
        border-radius: 5px;   
    }

    #third{
        width: 85%;
        text-align: center;
        font-size: 15px;
        color: darkgray;
        margin-left: 7%;
    }
    span{
        color: deepskyblue;
        font-size: 15px;
        
    }
}