* {
    box-sizing: border-box; 
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    min-width: 1080px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor escura semi-transparente */
    z-index: 998; /* Garante que o overlay esteja acima de todos os outros elementos */
    display: none; /* Inicialmente oculto */
}

.loaderMessage {
    width: 80px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: white;
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
  }
  @keyframes l3 {to{transform: rotate(1turn)}}

.container-modal-message{
    display: none;
    width: 40%;
    position: fixed;
    left: 30%;
    top: 42.5%;
    height: 15%;
    background-color: #4fbab5;
    border-radius: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    justify-content: center;
    box-shadow: 0 0 0.7rem 0.2rem #ffffff;
    z-index: 999;
}
.content-modal-message{
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: center;
}

.text-modal-message{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    color: white;
    text-align: center;

}

.text-modal-message p{
    font-size: 2rem;
    padding: 1rem;
    margin-left: 2rem;
}

.close-modal-message{
    display: flex;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close-modal-message img{
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}



.conteudo-principal-cadastro{
    display: flex;
    width: 100%;
    height: 99.9vh;
    justify-content: center;
    align-items: center;
    /* background: radial-gradient(circle at 50% 50%, rgb(255, 255, 255), #4fbab5); */
    background-image: url('img/background3.jpg');
    background-size: cover;
    background-position: center;

}

.container-cadastro{
    display: flex;
    width: 60%;
    height: 95%;
    justify-content: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(8px); /* Safari */
    background-color: rgba(255, 255, 255, 0.1); /* opcional para dar contraste */
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: 0.1rem solid black;
    border-radius: 0.5rem;
    box-shadow: 0 0 2rem 0.6rem white;


}
.container-apresentacao-sistema{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    border-right: 0.2rem solid black;
    background-color: rgba(0, 0, 0, 0.795);
    

}

.apresentacao-sistema{
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    color: white;

}

.apresentacao-sistema img{
    max-width: 60%;
    height: auto;
}

.apresentacao-sistema p{
    font-size: 1.7rem;
    margin-top: 2rem;
    font-weight: lighter;
}


.conteudo-cadastro{

    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: white;

}

.container-conteudo-cadastro{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    animation: fadeIn 0.1s ease;

}


.conteudo-cadastro h1{
    font-size: 3.5rem;
    text-transform: uppercase;
}

.conteudo-cadastro button {
    font-size: 2rem;
    margin: 2rem 0 2rem 0;
    cursor: pointer;
    width: 10rem;
    color: white;
    background-color: #4fbab5;
    border-radius: 0.5rem;
    padding: 0.5rem;
    border: none;
    
}

.conteudo-cadastro button:hover {
  
    box-shadow: 0px 0px 10px 1px #4ebbb5; 
   
    
}

.conteudo-cadastro img{
    display: none;
}

.conteudo-cadastro h6{
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.conteudo-cadastro a{
    color: white;
}

.campos-dados-cadastro{
    display: flex;
    flex-direction: column;
    width: 80%;
}



.campos-dados-cadastro label{
    font-size: 1.5rem;
    margin-top: 2rem;
}

.campos-dados-cadastro input{
    font-size: 1.5rem;
    border: none;
    background: none;
    border-bottom: 0.2rem solid white;
    margin: 0.5rem 0 1rem 0;
    color: white;
    
}

.campos-dados-cadastro input:focus{
  
    outline: none;
    border-bottom: 0.2rem solid black;
    background: none;
}



@media screen and (max-width: 1080px) {

    *, *::before, *::after {
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
        width: 100%;
        /* background: radial-gradient(circle at 50% 50%, rgb(255, 255, 255), #4fbab5); */
    }

    .loaderMessage {
        width: 200px;
        padding: 8px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: white;
        --_m: 
          conic-gradient(#0000 10%,#000),
          linear-gradient(#000 0 0) content-box;
        -webkit-mask: var(--_m);
                mask: var(--_m);
        -webkit-mask-composite: source-out;
                mask-composite: subtract;
        animation: l3 1s infinite linear;
      }
      @keyframes l3 {to{transform: rotate(1turn)}}
    
    .container-modal-message{
        width: 90%;
        position: fixed;
        left: 5%;
        top: 42.5%;
        height: 15%;
        background-color: #4fbab5;
        border-radius: 1rem;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        justify-content: center;
        box-shadow: 0 0 0.7rem 0.2rem #ffffff;
        z-index: 999;
    }
    .content-modal-message{
        display: flex;
        width: 80%;
        justify-content: center;
        align-items: center;
    }
    
    .text-modal-message{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-around;
        box-sizing: border-box;
        color: white;
        text-align: center;
    
    }
    
    
    .text-modal-message p{
        font-size: 4.5rem;
        padding: 1rem;
    }
    

    .conteudo-principal-cadastro{
        display: flex;
        width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        justify-content: center;
        /* align-items: center; */
        /* background: radial-gradient(circle at 50% 50%, rgb(255, 255, 255), #4fbab5); */
        background-image: url('img/background3.jpg');
        background-size: cover;
        background-position: center;
        overflow-y: auto;
    }
    
    .container-cadastro{
        display: flex;
        width: 99%;
        max-height: 90vh;
        justify-content: center;
        backdrop-filter: blur(20px);
        background-color: rgba(255, 255, 255, 0.1); /* opcional para dar contraste */
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        border: 0.1rem solid black;
        border-radius: 0.5rem;
        box-shadow: 0 0 2rem 0.6rem white;
    
    }
    .container-apresentacao-sistema{
        display: none;
    }
    
    
    .conteudo-cadastro{
    
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        background-color: transparent;
        color: white;
        overflow: auto;
    
    }

    
    .container-conteudo-cadastro{
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.5);

    }
    .conteudo-cadastro h1{
        font-size: 8rem;
        text-transform: uppercase;
    }
    
    .conteudo-cadastro button {
        font-size: 6rem;
        margin: 5rem 0 2rem 0;
        cursor: pointer;
        width: auto;
        color: white;
        background-color: #4fbab5;
        border-radius: 2rem;
        padding: 2rem;
        border: none;
        
    }
    
    .conteudo-cadastro button:hover {
      
        box-shadow: 0px 0px 10px 1px #4ebbb5; 
       
        
    }

    .conteudo-cadastro img{
        display: flex;
        width: 30%;
        height: auto;
        margin-top: 2rem;
    }
    
    .conteudo-cadastro h6{
        font-size: 3rem;
        margin-top: 2rem ;
        margin-bottom: 2rem ;
        text-align: center;
    }
    
    .campos-dados-cadastro{
        display: flex;
        flex-direction: column;
        width: 80%;
    }
    
    
    
    .campos-dados-cadastro label{
        font-size: 5rem;
        margin-top: 5rem;
    }
    
    .campos-dados-cadastro input{
        font-size: 4.5rem;
        border: none;
        background: none;
        border-bottom: 0.2rem solid white;
        margin: 0.5rem 0 1rem 0;
        color: white;
        
    }
    
    .campos-dados-cadastro input:focus{
      
        outline: none;
        border-bottom: 0.2rem solid black;
        background: none;
    }

    
    

}