

body {
    width: 100vw;
    height: 100vh;
    background-color: #22263a;

}

main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    background-color: lightgrey;
}

.container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;

}

.img-logo {
    width: 200px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.button-buscar,
.input-text {
    width: 100%;
    padding: 15px;
    border-radius: 7px;
    border: none;
    transition: box-shadow 0.2s ease, transform 0.1s ease;

}

.button-buscar {
    background-color: #5b659e;
    color: white;
    transition: box-shadow 0.2s ease, transform 0.1s ease;

}

.button-buscar:active {
    transform: scale(0.97);
    opacity: 0.9;
   
}

.input-text {
    color: #3a3a3a;
}

.input-text:focus {
    outline: none;
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.texto-explicativo {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    color: rgb(75, 75, 75);
}



footer {
    background-color: #22263a;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    gap: 15px;
    font-size: small;
}

footer p{   
    color: whitesmoke;
}

footer button {
    padding: 10px;
    background-color: #ffffff23;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: auto;
    font-size: medium;
    align-self: flex-start; 
    transition: box-shadow 0.2s ease, transform 0.1s ease;
}

footer button:active {
    transform: scale(0.97);
    opacity: 0.9;  
    -webkit-tap-highlight-color: transparent;  
    background-color: #ffffff31;
}

footer img {
    width: 150px;
    align-self: flex-end; 
}


