body {
    background-color: #e6e6e6;
    color: #3c3c3c;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

header {
    background-color: white;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    padding: 20px;
}

header img {
    width: 30%;
}

#hero {
    background-color: white;
    border-radius: 5px;
    margin: 25px 15px;
}

.title-form {
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 17px;
    font-weight: 400;
    padding: 10px;
    text-align: center;
}

form {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 15px;
}

label {
    padding-bottom: 5px;
}

input {
    border: 1px solid rgba(0,0,0,.250);
    font-family: 'Montserrat', sans-serif;
    height: 20px;
    margin-bottom: 20px;
    padding: 13px;
    width: 100%;
}

input::placeholder {
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

input[type="email"]:focus,
input[type="password"]:focus {
    outline: 1px solid rgba(0,0,0,.250);
}

button {
    background-color: #006967;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    padding: 13px;
    width: 100%;
}

button:hover {
    background-color:rgba(0, 105, 103, .9);
}

button:focus {
    outline: none;
}

.footer {
    background-color: #00955c;
    padding: 3px 0;
    text-align: center;
    width: 100%;
}

.footer p {
    color: white;
    font-size: 12px;
}
