/* Position relative on the container to contain absolute children */
#div_tramite_container {
    position: relative;
    width: 100%;
    height: 720px;
    /* Match your iframe height */
}

#div_tramite {
    height: 720px;
    min-width: 300px;
    /*max-width: 1100px;*/
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    overflow: hidden;
}

#app {
    height: 715px;
    min-width: 300px;
    /*max-width: 1100px;*/
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    border: 1px solid silver;
}

/* Make overlays absolute positioned and cover entire container */
#div_auth,
#div_loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    /* Optional: solid background to fully cover */
    z-index: 10;
    /* Ensure they appear above the iframe */
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    overflow: hidden;
}

.content__textos-y-foto h3 {
    display: none;
}

.app-shadow {
    margin: auto;
    height: 715px;
    -webkit-box-shadow: 4px 4px 24px 2px rgba(0, 70, 140, 0.3);
    -moz-box-shadow: 4px 4px 24px 2px rgba(0, 70, 140, 0.3);
    box-shadow: 4px 4px 24px 2px rgba(0, 70, 140, 0.3);
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
}