body {
    width: 100%;
    background-image: url('images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    font-family: 'Century Gothic';
    font-size: 20px;
}

h1 {
    text-align: center;
    color: white;
}

table {
    border-radius: 10px;
    background-color: #85CDFD;
    padding: 5px 10px 5px 10px;
}

input[type=text], input[type=password], input[type=email] {
    background-color: #DEFCF9;
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
    outline: none;
    border: 1px solid black;
}

input[type=submit] {
    margin-right: 20px;
    padding: 10px 10px 10px 10px;
    color: white;
    background-color: rgb(0, 153, 0);
    border-radius: 10px;
    font-family: 'Century Gothic';
    font-weight: 300;
}

input[type=submit]:hover {
    background-color: rgb(1, 80, 1);
}

input[type=button] {
    padding: 10px 10px 10px 10px;
    color: white;
    background-color: #362FD9;
    border-radius: 10px;
    font-family: 'Century Gothic';
    font-weight: 300;
}

input[type=button]:hover {
    background-color: #1f1b81;
}

::placeholder {
    font-family: 'Century Gothic';
    font-weight: 300;
}