﻿.container-elemento {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-content: center;
    justify-content: space-between;
}
.elemento-derecha {
    width: 60%;
}

.container-validacion-padre{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align:center;
    margin-top: 6%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 5%;
}

.container-validacion-padre h2{
    margin-bottom: 10%;
}

.container-contenido-validacion {
    margin-left: 5%;
}
.container-boton-volver{
    padding-top:5%;
}

@media screen and (max-width:700px) {
    .container-validacion-padre{
        width: 100%;
    }
    .container-elemento {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .elemento-derecha {
        width: 100%;
    }
}