
body,
html {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;

}

body {
    background: linear-gradient(to bottom right, #00c6ff, #0e436c);;
    background-repeat: no-repeat;
    background-size: cover;
}

form {
    width: 100%;
    max-width: 400px;
    padding: 35px 20px 20px 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
   
    border-bottom-right-radius: 50px;

    box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.75);

}





.heading-title {
    color: #fff;
    font-family: "Kallisto Bold", Sans-serif;
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 1px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
}


.w-light {
    color: #ffbf00;
}


.btn-send{
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.t-word{
    border-radius: 5px;
    border: 1px solid #0b326b;
    padding: 5px;
}


.fmask{
position: absolute;
background-color: #000000e6; /* Cor inicial */
/* background: #00000096; */
width: 100%;
height: 100%;
transition: background-color 2s ease-in-out; /* Transição suave */

}

.error{
    color: red;
    min-height: 2.2rem;
    margin: 5px 0 10px 0;
    display: inline-block;
    font-size: .8rem;
}


@media (max-width: 767px) {
    body {
        /*background-image: url('/assets/img/banner-bg-cel.webp');*/
        background-position: center;
    }
}

