@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Laila:wght@700&display=swap');

*{
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(45deg, #8e2de2, #4a00e0);
    background-repeat: no-repeat;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

main.container {
    background: white;
    max-width: 350px;
    min-height: 40vh;
    padding: 2rem;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

main h2 {
    font-weight: 800;
    background-image: linear-gradient(45deg, #060753, #1a4fc2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    position: relative;
    font-family: 'Laila', sans-serif;
    
}

main h2 ::before {
    content: "";
    position: absolute;
    height: 4px;
    width: 25px;
    bottom: 3px;
    left: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, #8e2de2, #4a00e0);
}

form {
    /*display: flex; */
    display: flex;
    padding: 4px;
    flex-direction: column;
}

.input-field {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input-field input {
    outline: none;
    font-size: 1.2rem;
    color: rgba (0, 0, 0, 0.7);
    /* novo */
    border: none;
}

.input-field input ::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

form button[type="button"] {
    border: none;
    margin: auto;
}

form input[type="submit"] {
    margin-top: 1rem;
    padding: 0.6rem;
    background: linear-gradient(to left, #4776e6, #8e54e9);
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

form input[type="submit"] :hover {
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #4776e6, #8e54e9);
}

.footer {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.footer span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.0rem;
    text-align: center;
}

.footer .rodape {
    color: black;

}

.footer .rodape span {
    font-size: 0.8rem;
    font-weight: bold;
    flex-direction: row;
    text-align: center;
}

.footer .rodape a {
    display: inline-block;
    line-height: 1.3;
    text-decoration: none;
    color: inherit;
    transition: ease 25s;
}

.footer .rodape a:before{
    content: ".";
    font-size: 1.1rem;
    color: black;
    display: inline-block;
}

.footer .rodape a:hover {
    text-decoration: underline;
    color: yellow;
}

.footer .voltar {
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
}

.footer .voltar a i {
    margin: 0 0.5rem;
    width: 15px;
}

.footer .voltar a {
    text-decoration: none;
    color: white;
}

.footer .voltar.botao {
    background: linear-gradient(to right, #1e3c72, #2a5298);
}

.resultados {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.resultados span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    text-align: center;
}

.resultados .mercados {
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 1.3rem;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
}

.resultados a i {
    margin: 0 0.5rem;
    width: 15px;
}

.resultados .mercados a {
    text-decoration: none;
    color: white;
}

.resultados .mercados.nome {
    background: linear-gradient(to right, #a50101, #5e0101);
}

