
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/*======login=====*/
body {
   /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%,  rgba(75,14,154,1) 35%,  rgba(20,212,255,1) 100%);*/
    font-family: 'poppins', sans-serif;
}

form{
    width: 30%;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    margin-top: 8%;
}

.btn-primary {
    width: 100%;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%,  rgba(75,14,154,1) 35%,  rgba(20,212,255,1) 100%);
}
.form-control {
    color:  rgba(0,0,0,.87);
    border-bottom-color:rgba(0,0,0,.42);
    box-shadow: none!important;
    border: none;
    border-bottom: 1px solid;
    border-radius:  4px 4px 0 0;
    font-family: 'Roboto';
    font-size: medium;

}
.text-center {
    font-size: 2rem!important;
    font-weight: 700;

}

.form-label {
    font-family: 700!important;
    font-family: 'Roboto';
}

@media only screen and  (max-width: 600px){
    form{
        width: 100%!important;
    }
}

