.aplicacion-enviada-container {
    background: #002F86;
    width: 100%;
    height: 100vh;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 30px 80px;
    justify-content: center;
}

.aplicacion-enviada-container img {
    width: 175px;
}

.sended-aplication-text {
    text-align: center;
}

.sended-aplication-text h2 {
    color: #A1D8F1;
    font-size: 5em;
    margin: 0;
    line-height: 1;
}

.sended-aplication-text h1 {
    color: #A6FA53;
    font-size: 9em;
    line-height: 1;
    margin: 0;
}

.sended-aplication-text p {
    color: white;
    font-size: 1.5em;
}

.computer-sent-aplication {
    width: 350px;
}

.computer-sent-aplication img {
    width: 100%;
}

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .aplicacion-enviada-container {
        flex-direction: column;
        gap: 2rem;
        padding: 20px 40px;
        height: auto;
    }

    .sended-aplication-text h2 {
        font-size: 4em;
    }

    .sended-aplication-text h1 {
        font-size: 7em;
    }

    .sended-aplication-text p {
        font-size: 1.3em;
    }

    .computer-sent-aplication {
        width: 300px;
        text-align: center;
    }

    .aplicacion-enviada-container img {
        width: 150px;
    }
}

/* Phone View (Up to 767px) */
@media (max-width: 767px) {
    .aplicacion-enviada-container {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
        height: auto;
    }

    .sended-aplication-text h2 {
        font-size: 2.5em;
    }

    .sended-aplication-text h1 {
        font-size: 5em;
    }

    .sended-aplication-text p {
        font-size: 1.2em;
    }

    .computer-sent-aplication {
        width: 250px;
        text-align: center;
    }

    .aplicacion-enviada-container img {
        width: 125px;
    }
}