/* TELA */
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body {
    margin: 0;
    padding: 0;
    background-image: url("images/background.jpg"); /* Caminho da sua imagem */
    background-size: cover; /* Faz a imagem cobrir toda a tela */
    background-repeat: no-repeat; /* Não repete a imagem */
    height: 100vh; /* Garante que o body ocupe toda a altura da tela */
    overflow: hidden; /* remover scrolls vertical e horizontal*/

    /* CENTRALIZAÇÃO COM FLEX */
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

#login {
    height: inherit;
}

.login-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ffcf9f;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
    min-height: 300px;
}

form {
    width: 90%;
}

form label {
    font-family: "Pacifico", cursive;
    color: #856349;
}

input.form-control:focus {
    border-color: #856043;
    box-shadow: 0 0 0 0.25rem rgba(133, 96, 67, 0.25);
}

/* LOGO APP */
#logo {
    font-family: "Pacifico", cursive;
    color: #28ff1e ;
    user-select: none;
    font-size: 24px;
}



/* SUBMIT BTN ESTILIZADO */
.btn-color-theme {
    background-color: #856043;
    border-color: #856043;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-color-theme:hover {
    background-color: #906e56;
    border-color: #906e56;
    color: #fff;
}

.btn-color-theme:focus,
.btn-color-theme:active,
.btn-color-theme:focus:active {
    background-color: #906e56;
    border-color: #906e56;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.btn-color-theme {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-color-theme:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#btn-entrar {
    display: flex;
    justify-content: end;
}

@media (max-width: 768px) {
    .login-box {
        display: flex;
        flex-direction: column;
        max-width: 95vw;
        min-height: 80vh;
    }

    #logo {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    label {
        min-height: 30px;
    }

    #btn-entrar {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    #btn-entrar button {
        padding: 10px 70px;
        font-size: 30px;
    }

    fieldset input {
        height: 70px;
    }

    fieldset label {
        font-size: 30px;
    }
}