.screen{
    background: #ecf3fa;
    position:absolute;
    top: 0em;
    left: 0em;
    bottom: 0em;
    right: 0em;
    height:100%;
    width:100%;
    display: flex;
    align-items: center;
    align-content: center;
}

.screen .container{
    margin: auto;
    background-color: #ffffff;
    box-shadow: 5px 5px 5px #c2dff8;
    align-items: center;
}

.screen .container .text{
    margin: 0em 2em;
}

.screen .container .text h1{
    font-family: Arial;
    color: rgb(32, 158, 131);
    font-size: 18pt;
    text-align: center;
    margin: 1em;
}

.screen .container .text h2{
    font-family: Arial;
    color: rgb(117, 116, 116);
    font-size: 12pt;
    font-weight: normal;
    text-align: center;
}

.screen .container .image{
    margin: 0em;
    display: flex;
}

.screen .container .image img{
    max-width: 100%;
    height: 400px;
    margin: 0em;
    display: flex;
    object-fit: cover;
}

.screen .container .text .datos{
    margin: 1em;
}

.screen .container .text .datos .texto{
    margin: 0em;
}

.screen .container .text .datos .texto h3{
    font-family: Arial;
    color: rgb(0, 0, 0);
    font-size: 12pt;
    text-align: left;
}

.screen .container .text .datos input{
    height: 35px;
    width: 90%;
    margin: 1em;
    background-color: rgb(255, 255, 255);
    font-family: Arial;
    font-size: 1rem;
    border-style: solid;
    border-color: #949494;
    border-width: 0.3mm;
    padding-left: 10px;
}

#backbuttons{
    display: grid;
    grid-template-columns: 30% 70%;
}

#backbuttons .btn-return{
    margin: auto;
    width: 30px;
    border-radius: 50%;
    box-shadow: 3px 3px 3px #a3d4fe;
}

#backbuttons .btn-return:hover{
    background: #e2e2e2;
}

@media screen and (min-width: 40em){
    .screen .container{
        max-width: 80%;
        display: grid;
        grid-template-columns: 60% 40%;
    }
}

