body {
    font-family: Arial, Helvetica, sans-serif;
    width: 500px;
    margin: auto;
    height: auto;
    background-color: #008f88;
    background-image: url(../images/bg2.jpg);
    background: linear-gradient(to bottom right, #00bd9d 0%, #008f88 100%);
    align-items: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
}

form {
    border-radius: 5px;
    background: white;
    display: inline-block;
}

input[type=text],
input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
}

button {
    background-color: rgb(0, 124, 124);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
}

button:hover {
    opacity: 0.8;
}

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}

.container {
    padding: 16px;
}

.footer {
    background-color: #333;
    padding: 1px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: cyan;
    font-weight: 600;
}

.footer p {
    margin: 10px;
}


/* Change styles for span and cancel button on extra small screens */

@media screen and (max-width: 768px) {
    body {
        width: 90%;
        height: 90%;
    }
}