@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background: -25% / 40% no-repeat url("../img/logoDtser.png");
}


.MaiorLoginCertidao {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, .9);
    backdrop-filter: blur(1px);
    justify-content: center;
}

.areaFormCertidao form {
    display: flex;
    flex-direction: column;
}

.areaFormCertidao nav > h1 {
    text-align: center;
    font-size: 17pt;
    color: rgb(7, 7, 137);
    font-family: "Montserrat", sans-serif;
}

.areaFormCertidao form input, 
.areaFormCertidao form button {
    border: none;
    width: 20rem;
    outline: none;
    padding: .5rem;
    font-weight: 900;
    margin-block: 1rem;
    transition: all .3s;
    font-family: "Montserrat", sans-serif;
}

.areaFormCertidao form input {
    background: transparent;
    border-bottom: 2px solid  rgb(7, 7, 137);
}

.areaFormCertidao form input:hover,
.areaFormCertidao form input:focus {
    border-bottom: 2px solid blue;
}

.areaFormCertidao form button {
    width: 21rem;
    padding: 1rem;
    color: white;
    cursor: pointer;
    border-radius: .5rem;
    background-color: rgb(7, 7, 137);
}

.areaFormCertidao form button:hover {
    background-color: blue;
}

@media screen and (max-width: 768px) {

    .MaiorLoginCertidao {
        background-color: rgba(255, 255, 255, .9);
    }
    
    .areaFormCertidao form input, 
    .areaFormCertidao form button {
        width: 100%;
        font-weight: 300;
    }

    .areaFormCertidao form button {
        font-weight: 700;
    }

    body {
        background: center / 90% no-repeat url("../img/logoDtser.png");
    }
}