body{
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right, #fff, #c0ccda);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #1f3759;
    padding-top: 40px;
}
h1{
    text-align: center;
    font-size: 20px;
    padding-bottom: 30px;
    margin: 0;
}
label{
    font-size: 15px;
}
.p-container{
    text-align: center;
}
form{
    margin: 0 auto;
    padding: 20px;
    border-radius: 5px;
    width: 25%;
}
#username{
    padding: 10px 25px;
    width: 100%;
}
#password{
    padding: 10px 25px;
    width: 100%;
}
#go{
    margin: 0 auto;
    padding:17px;
    background-image: linear-gradient(to right,#69bddb  0%, #00abe4 51%,  #3fb8e1 100%);
    background-size: 200% auto;
    color: #fff;
    border-radius: 5px;
    border: none;
    box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    transition:  0.5s
}
#go:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-position: right center;
}
input{
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}
input[type="submit"]{
    margin: 10px;
    padding:13px;
    background-image: linear-gradient(to right,#69bddb  0%, #00abe4 51%,  #3fb8e1 100%);
    background-size: 200% auto;
    color: #fff;
    border-radius: 5px;
    border: none;
    box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    transition:  0.5s
}
input[type="submit"]:hover{
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background-position: right center;
}

@media only screen and (max-width: 1000px) {
    body {
        padding-top: 60px !important;
    }
    form {
        width: 60% !important;
        padding: 30px !important;
    }
    h1{
        font-size: 30px !important;
        padding-bottom: 60px !important;
    }
    label{
        font-size: 20px !important;
    }
    #username, #password{
        padding: 15px 15px !important;
        width: 100% !important;
    }
    #go{
        font-size: 18px !important;
        padding: 15px !important;
    }
}