body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #ef7b04, #8e44ad);
}

.container {
    display: flex;
    flex-wrap: wrap; 
}

.form-container {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 50%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.image-container {
    width: 50%;
    /* Ajuste a largura conforme necessário */
}

.imgcontainer{
    width: 100%;
    height: auto;
    display: block;
}

.logo {
    width: 250px;
    height: 150px;
    position: absolute;
    top: -4%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

h1 {
    color: #333;
    margin-top: 33px;
}

a {
    color: #007BFF;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

h3 {
    color: #555;
}

.app-links {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.apple-store{
    width: 204px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    margin-top: 3px;
}

.google-play{
    width: 200px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.google-play:hover,
.apple-store:hover {
    transform: scale(1.1);
}

@media only screen /*CELULARES EM GERAL ATÉ TABLET */
and (max-width : 768px) {

    .container {
        flex-direction: column;
    }

    .form-container{
        max-width: 100%;
        width: 306px;
        margin: 119px auto;
    }

    .image-container {
        width: 100%;
        margin-top: 20px;
    }

    .image-container {
        margin-top: 20px;
    }

    .app-links{
        flex-direction: column;
        align-items: center;
    }

    .apple-store{
        width: 214px;
    }
}

@media only screen /*CELULARES EM GERAL ATÉ TABLET */
and (min-width : 769px)
and (max-width : 1280px) {

    .container {
        flex-direction: column;
    }

    .form-container{
        max-width: 100%;
        width: 306px;
        margin: 119px auto;
    }

    .image-container {
        width: 100%;
        margin-top: 20px;
    }

    .image-container {
        margin-top: 20px;
    }

    .app-links{
        flex-direction: column;
        align-items: center;
    }

    .apple-store{
        width: 214px;
    }
}
