#contenedor_revisor {
    z-index: 15;
    position: relative;  
    box-sizing: border-box;
    margin: 100px auto 10px;    
    overflow: hidden;
}

#contenido_revisor .form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 20px;
}

#contenido_revisor .form-group:last-child {
    margin: 0;
}

#contenido_revisor .form-group label {
    display: block;
    margin: 0 0 10px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

#contenido_revisor .form-group input, select{
    outline: none;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    padding: 12px 20px;
    color: rgba(0, 0, 0, 0.6);
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    transition: 0.3s ease;
}

#contenido_revisor .contenido_archivo_revisor {
    background-color: rgb(0, 0, 0, 0.1);
    width: 100%;
    height: 100px;
    border-radius: 4px;
    display: flex;  
    align-items: center;  
}

#contenido_revisor .contenido_archivo_revisor .vista_cv {
    width: 80px;
    height: 80px;
    margin: 10px;
}

#contenido_revisor .contenido_archivo_revisor .vista_cv.active {
    display:none;
}

#contenido_revisor .contenido_archivo_revisor .mensaje_cv {
    color: rgb(243, 156, 18);
    margin: 10px;
    font-weight: 500;
}


#contenido_revisor .boton_cv {
    background-color: #EC7063;
    margin-top: 20px;
    border-radius: 25px;
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 18px;
    display: flex;
    cursor: pointer;    
    align-items: center;
    justify-content: center;
}


#contenido_revisor .boton_cv:hover{
    color: yellow;
}

#contenido_revisor .form-group .btn_revisor {
    outline: none;
    background-color: rgb(169, 50, 38);
    width: 50%;   
    border: 0;
    border-radius: 4px;
    padding: 12px 20px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.form_panel {
    padding: 60px calc(5% + 60px) 60px 60px;
    box-sizing: border-box;
}

.form_header {
    margin: 0 0 40px;
}

.form_header h1 {
    padding: 4px 0;
    color: #922B21;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.form_header h4 {
    padding: 4px 0;
    color: #EC7063;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}