body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hide_right{
    transform: translateX(95vw);
    transition: all .3s ease;
}

.app{
    position: absolute;
    display: flex; justify-content: center;align-items: center;
    width: 100vw;
    height: 100vh;
}

.home_box {
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.home_logo img {
    width: 100%;
    height: 100%;
}

.home_logo {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    width: 300px;
    height: auto;
    box-sizing: border-box;
}

.home_logo div {
    display: flex; justify-content: center;
    width: 100%;
    margin: 0; 
    padding: 0 0 .5em 0;
    color: #fff;
    font-family: 'roboto';
    font-size: 1rem;
    font-weight: 200;
    text-align: center;
}

.tachado{
    text-decoration: line-through;
    padding: 0 5px;
}

.negrita{ font-weight: 500;}

.home_account{
    width: 100%;
    padding: 1em;
}

.campos_box{
    display: flex; justify-content: center; align-items: center;
    width: 100%; height: auto;
}

input, button {
    width: 150px;
    padding: .5em .8em;
    margin: .3em;
    text-transform: capitalize;
    border: none;   
    border-radius: .3em;
    outline: none;
    transition: all .3s ease;
}

form button:hover {
    transform: scale(1.1);
    transition: all .3s ease;
    background-color: #eba40c;
}

button , .clean{
    width: 60px;
    height: auto;
    color: #fff;
    background-color: #2ECC71;
    cursor: pointer;
}

.clean img{ width: 100%; height: 100%;}
.clean {
    height: 28px;
}




/* Pnatalla Home */
.pantalla_home {
    position: absolute; right: 0;
    display: flex; align-items: center;
    width: 98%;
    height: 90vh;
    background-color: rgba(0, 0, 0, .7) !important;
    background-image: url('../img/foto_02.jpg') !important;
    background-position: right;
    background-size: cover;
    background-blend-mode: darken !important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .7);
    transition: all .3s ease;
    border-radius: 2em 0 0 2em;
}
/* banner */
.banner_home{
    display: flex; align-items: center;
    width: min-content;
    height: min-content;
    margin-left: 1em;
}

.dispositivo img{ width: 100%; height: 100%;}
.dispositivo{
    display: flex; flex-wrap: wrap;
    width: 300px;
    height: auto;
}

.title_box{
    display: flex; justify-content: center; align-items: center;
    width: min-content;
    height: auto;
}
.title_group{
    width: auto;
    height: auto;
}

.home_title{
    width: 300px;
    height: auto;
    font-family: 'Baloo Bhai';
    font-size: 3rem;
    text-align: right;
    line-height: 1em;
    color: #fff;
}

.subtitulo{
    display:flex; justify-content: center; align-items: center;
    padding: .5em;
    height: min-content;
    font-family: roboto;
    font-weight: 300;
    font-size: .9rem;
    text-align: right;
    color: #fff;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, .2);
    border-radius: .3em;
}

.idvirtual{ color: #FF4040;}

button.crear_cv{
    display: flex; justify-content: center; align-items: center;
    width: 100%;
    margin: 0; 
    margin-top: 1.5em;
    padding: .2em 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: none;
    background-color: rgba(255, 255, 255, .0);
    border:2px solid #fff; box-sizing: border-box;
    border-radius: 40px;
}
button.crear_cv:hover{
    background-color: #2ECC71;
    border-color: transparent;
    transition: all .3s ease;
}

span.icono_hv img{ width: 25px; height: 25px; margin-left:.5em ; filter: invert(100%);}

.close{
    z-index:1;
    position: absolute; top: 50%; left: -24px;
    display: flex; justify-content: center; align-items: center;
    width: 30px; height: 30px;
    padding: .5em;
    cursor: pointer;
    background-color: #FF4040;
    border-radius: 50%;
    box-shadow: inset -5px 5px 5px rgba(0, 0, 0, .7);
}
.close img:hover{transform:scale(1.2); transition: all .1s ease; }
.close-hide{ transform: rotate(45deg)}

.particles{
    display: flex; justify-content: center; align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #FF4040;
}


@media screen and (max-width: 414px) {

    /* registro */
    .home_logo{ width: 240px; }
    .home_account { width: 70%;}
    .campos_box { display: flex; flex-wrap: wrap;}
    .campos_box button{margin-top: 1em;}
    .campos_box input{ width: 100%; margin: .3em;}

    .pantalla_home{
        flex-wrap: wrap;
        background-position: left;
    }
    .dispositivo {
        width: 200px;
    }
    .banner_home{
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .home_title{ text-align: center;}
    .close{ left: -20px;}
}

@media screen and (max-height: 480px) {
    .dispositivo { display: none;}
    .home_title{ text-align: center; font-size: 1.5rem;}
}