@media only screen and (min-width: 601px) {
    #login-form {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        box-shadow: rgba(21, 116, 139, 0.596) 0px 13px 27px -5px, rgba(2, 204, 255, 0.3) 0px 8px 16px -8px;
        width: 28%;
        height: 300px;
        background-color: rgb(233, 233, 233);
        text-align: center;
        padding-top: 2%;
        border-radius: 20px;
        margin-top: 50px;
        margin-left: 36%;
        margin-right: 36%;
    }
    input[type=text] {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        width: 75%;
        height: 30px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
    input[type=password] {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        margin-top: 1%;
        width: 75%;
        height: 30px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
    label {
        margin-left: 6%;
        font-size: x-large;
    }
    input[type=checkbox] {
        padding-left: 3%;
        margin-top: 1%;
        margin-right: 0;
        width: 25%;
        height: 20px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
    button[type=submit] {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        margin-top: 20%;
        background-color: rgb(51, 51, 236);
        width: 75%;
        color:aliceblue;
        height: 70px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
}
@media only screen and (max-width: 600px) {
    #login-form {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        box-shadow: rgba(21, 116, 139, 0.596) 0px 13px 27px -5px, rgba(2, 204, 255, 0.3) 0px 8px 16px -8px;
        width: 90%;
        height: 300px;
        background-color: rgb(233, 233, 233);
        text-align: center;
        padding-top: 2%;
        border-radius: 20px;
        margin-top: 50px;
        margin-left: 5%;
        margin-right: 5%;
    }
    input[type=text] {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        width: 75%;
        height: 30px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
    input[type=password] {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        margin-top: 1%;
        width: 75%;
        height: 30px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
    #login-form label {
        margin-left: 6%;
        font-size: x-large;
    }
    input[type=checkbox] {
        margin-top: 1%;
        margin-right: 0;
        width: 25%;
        height: 20px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
    button[type=submit] {
        font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
        margin-top: 20%;
        background-color: rgb(51, 51, 236);
        width: 75%;
        color:aliceblue;
        height: 70px;
        text-align: center;
        font-size: larger;
        border-radius: 20px;
    }
}
