html {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    background: url("../Imagens/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;
}

label {
    font-size: 2.5rem;
    text-align: center;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 40px 8px 10px 8px;
    color: white !important;
}

@media only screen and (max-width: 800px) {
    body {
        background: url("../Imagens/background_mobile.jpg");
        object-fit: cover;
        background-size: 800px;
    }
    label {
        font-size: 1.5rem;
        text-align: center;
        font-weight: bolder;
        text-transform: uppercase;
        margin: 40px 8px 10px 8px;
        color: white !important;
    }
}

.fa-camera {
    color: white;
    align-self: center;
}

a {
    color: white !important;
    display: inline-block;
    text-decoration: underline !important;
    font-weight: 400;
    font-size: 1.4em;
}

h6 {
    text-align: center;
    text-transform: uppercase;
    margin: 40px 8px 10px 8px;
    color: white !important;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding-top: 10%;
}

#formContent {
    border-radius: 10px 10px 10px 10px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    text-align: center;
}

#formFooter {
    border-top: 3px solid #dce8f1;
    padding: 25px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

input[type=button],
input[type=submit],
input[type=reset] {
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
}

input[type=text],
input[type=password],
input[type=email] {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 5px;
    width: 85%;
    border: 3px solid #f6f6f6;
    border-radius: 15px;
}

 ::placeholder {
    color: rgb(0, 9, 60);
    opacity: 1;
}

:-ms-input-placeholder {
    color: black;
}

::-ms-input-placeholder {
    color: black;
}

#icon {
    width: 60%;
}