*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


body{
    background-color: rgb(15, 15, 15) !important;
}
.logo{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}
.logo img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
}
.form-box{
    background-color: #323232 !important;
    width: 40% !important;
    margin: 120px auto !important;
    padding: 50px;
    border-radius: 20px;
}
.sign-btn{
    text-align: center;
}
label{
    color: #fff;
}
#btn{
    padding: 10px;
    font-size: large;
    background-color: rgb(52, 196, 93) !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
}
#btn:hover{
    background-color: rgb(8, 155, 76) !important;
}

@media only screen and (max-width: 1000px){
    .form-box{
        width: 50% !important;
    }
}
@media only screen and (max-width: 625px){
    .form-box{
        width: 70% !important;
    }
    .logo{
        font-size: 25px;
    }
}
@media only screen and (max-width: 490px){
    .form-box{
        width: 80% !important;
    }
    .logo{
        font-size: 20px;
    }
}