@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(https://fonts.googleapis.com/css?family=Handlee);
/**
 * @author: Marc Malignan
 * The current code was taken from the next link: https://codepen.io/MarcMalignan/pen/QbaXGg
 * El código de este archivo fue tomado del siguiente link: https://codepen.io/MarcMalignan/pen/QbaXGg
 */
.papel {
    position: relative;
    width: 85%;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    padding: 40px 0 15px 60px;
    box-sizing: border-box;
    font-size: 18px;
}
.papel:before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: 60px;
    background: radial-gradient(#575450 6px, transparent 7px) repeat-y;
    background-size: 30px 30px;
    border-right: 3px solid #D44147;
    box-sizing: border-box;
}
.papel-titulo{
    position: absolute;
    top: calc(40px - 1em - 2px);
    left: 60px;
    box-sizing: border-box;
    width: calc(100% - 60px);
    font-size: 1.25em;
    text-align: center;
    font-weight: bold;
    color: #05cf72;
    font-family: 'Handlee';
}
.papel-contenido {
    top: 30px;
    padding-top: 30px;
    right: 0;
    bottom: 60px;
    left: 60px;
    background: linear-gradient(transparent, transparent 28px, #91D1D3 28px);
    background-size: 30px 30px;
    border-top: 3px solid #D44147;
}

.papel-renglon {
    padding-left:10px;
    /*line-height: 30px;
    border: 0;
    outline: 0;*/
    background: transparent;
    color: mediumblue;
    font-family: 'Handlee', cursive;
    /*font-weight: bold;*/
    /*font-size: 18px;*/
    box-sizing: border-box;
    z-index: 1;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    height: 30px;
    padding-bottom: 1px;
    box-sizing: border-box;
}
.papel-contenido input[type="text"], .papel-contenido input[type="email"], .papel-contenido select{
    /*height: 21px;*/
    /*margin: 4px 5px;*/
    width: 200px;
    /*line-height: 30px;*/
    border: 0;
    /*outline: 0;*/
    background: transparent;
    color: black;
    font-family: 'Handlee', cursive;
    font-size: 1.1rem;
    box-sizing: border-box;
    z-index: 1;
    border-bottom: black inset thin;
    padding: 0 0.5rem;
}
.papel-contenido *:disabled{
    background-color: initial !important;
    background-color: rgba(59, 59, 59, 0.3) !important;
    color: initial !important;
    /*border: initial !important;
    border-bottom: initial !important;*/
}
.papel-renglon button{
    line-height: normal;
    padding: .1rem .5rem;
}
@media only screen and (max-width: 1500px), only screen and (max-height: 800px) {
    .papel {
        font-size: 16px;
    }
}