html {
    height: 100%;
}

body {
    height: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: white;
}

.btn-submit {
    background-color: #11cc9d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
}

.btn-submit:hover {
    color: #017767;
}

.cm-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(204, 17, 64, 0.5), #CC1140),url(../img/holding-hands.jpg) no-repeat center center fixed;
    background-size: cover;
}

p {
    padding: 10px 0;
    text-align: center;
}

.cm-modal {
    width: 500px;

    padding: 20px;
    background-color: rgba(200, 200, 200, 0.5);
    border-radius: 10px;
}

.errors {
    margin: 0 15px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(220,220,220, 0.4);
    color: red;
    text-align: left;
}

.errors ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

input {
    width: 100%;
    margin-bottom: 15px;
}

img {
    text-align: center;
    width: 250px;
    margin: 0 auto;
    display: block;
}

h3 {
    text-align: center;
}

.footer {
    margin-top: 20px;
}