/*ESTILIZAÇÃO DA TELA DE LOGIN*/


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: hidden;
}

button {
    border: none;
    outline: none;
    background: none; /* Remove o fundo padrão do botão */
    

}

.bg-login{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-login img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    margin: 0;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Extrabold.otf') format('opentype'); /* Caminho e formato corrigidos */
    font-weight: 400;
    font-style: normal;
} 
  
  @font-face {
    font-family: 'Gilroy-Light';
    src: url('../fonts/Gilroy-Light.otf') format('opentype'); /* Caminho e formato corrigidos */
    font-weight: 300;
    font-style: normal;
}

.topo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f4f4f4;
    width: 26rem;
    padding: 2.813rem;
    height: auto;
    gap: 0.5rem;
    border-radius: 1rem;
    align-items: center;
}


.form-login{
    font-family: Gilroy;
    display: flex;
    width: 26rem;
    height: auto;
    padding: 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
    letter-spacing: 0.1rem;
}

h1 {
    margin-top:0;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: Gilroy;
}

.form-login input {
    width: 24rem;
    padding: 1rem;
    font-size: 1.2rem;
    font-family: "Gilroy-Light";
    color: white;
    letter-spacing: 0.05rem;
    background: var(--Medium-Medium, #BBBABA);
    gap: 1rem;
    border: none;
    border-radius: 1.25rem;
    transition: all linear 160ms;
    outline: none;
}

input.entrar{
    width: 416px;
}

.form-login input::placeholder{
    color:white;
    font-family: "Gilroy-Light";
    margin-left: 1rem;
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
    justify-content: center;
    opacity: 0.7;
    font-weight: 300;
}

.botao-login:default{
    background-color: #9f9f9f;
    color: white;
    border-radius: 2.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-family: "Gilroy-Light";
    letter-spacing: 0.1rem;
    font-weight: 300;
    width: 24rem;
    padding: 1rem;
}

.botao-login:hover {
    background-color: #595959; /* Hover: cor de fundo cinza claro */
    color: #f4f4f4; /* Hover: texto branco */
    cursor: pointer;
}

.botao-login:active {
    background-color: #595959; /* Clicked: cor de fundo cinza escuro */
    color: #f4f4f4; /* Clicked: texto branco */
    cursor: pointer;
}

img {
    user-select: none; /* Impede a seleção de texto ou imagem */
    -webkit-user-select: none; /* Suporte para WebKit (Safari, Chrome) */
    -moz-user-select: none; /* Suporte para Firefox */
    -ms-user-select: none; /* Suporte para Internet Explorer/Edge */
}

.logo{
    width: 150px;
}


