.container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
}

html, body {
    width: 100%;
    height: 100%;
}

.fundo {
    height: 100%;
    width: 992px;
    background-color: #ebebe9;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
}

.mensagem {
    margin: 0 auto;
    font-size: 1.5em;
    margin: 50px 0;
    color: #b5a79e;
}


.cont-input-url {
	display: flex;
    font-size: 2em;
    font-style: italic;
    color: #b5a79e;
    align-items: center;
}


.texto2 input {
    background-color: #ac9f97;
    color: white;
    border: 0;
    border-radius: 50px;
    font-size: 0.7em;
    padding: 10px 15px;
    width: 300px;
outline: 0;
    font-style: italic;
}

.texto2 input::placeholder {
    color: white;
}

.texto2 button {
    position: absolute;
    background-color: green;
    color: white;
    border: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    top: -5px;
    right: -20px;
    font-size: 1em;
    font-style: inherit;
    text-align: center;
    writing-mode: unset;
    padding: 0;
    z-index: +1;
}

.texto2 {
    position: relative;
    margin-right: 20px;
}

.cont-erro {
    position: absolute;
    top: 0;
    left: 0;
    background-color: tomato;
    color: white;
    font-size: 0.8em;
    border-radius: 50px;
    height: 100%;
    width: 100%;
    line-height: 2em;
    padding-left: 20px;
    box-sizing: border-box;
}


@media screen and (max-width: 1000px) {
	.fundo {
		width:100%;
	}
}
