    body {
        font-family: Arial, Helvetica, sans-serif;
        width: 500px;
        margin: auto;
        height: auto;
        background-color: #e7e7e7;
        align-items: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: 100% 100%;
    }

    form {
        border-radius: 20px;
        background: white;
        display: inline-block;
        /*box-shadow: 0 0 10px 1px;*/
        box-shadow: 0 3px 20px 0 rgb(0 0 0 / 10%);
        overflow: hidden;
        text-align: center;
        margin: 30px 0;
    }

    input[type=text],
    input[type=password] {
        width: 95%;
        padding: 15px 20px;
        margin: 8px 0;
        display: inline-block;
        border: none;
        box-sizing: border-box;
        border-radius: 30px;
        font-size: 15px;
        font-weight: bold;
        background: #ebebeb;
        transition: all .4s;
    }

    input[type=text]:focus,
    input[type=password]:focus {
        outline: none;
        width: 98%;
    }

    button {
        background-color: royalblue;
        color: white;
        padding: 15px 20px;
        margin: 15px 0 8px 0;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        width: 95%;
        font-size: 15px;
        font-weight: bold;
        transition: all .4s;
    }

    button:hover {
        opacity: 0.8;
    }

    .imgcontainer {
        text-align: center;
        margin: 0;
        padding: 10px;
        background: royalblue;
        color: white;
        font-size: 18pt;
        font-weight: bold;
    }

    .container {
        padding: 30px 16px;
    }

    .footer {
        background-color: #333;
        padding: 1px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        color: white;
        font-weight: 600;
    }

    .footer p {
        margin: 10px;
    }

    h1 {
        color: #555;
        text-align: center;
    }

    /* Change styles for span and cancel button on extra small screens */

    @media screen and (max-width: 768px) {
        body {
            width: 95%;
            height: 90%;
        }
    }