#registrar{
    position: relative;
    float: left;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    padding: 7px;
    box-shadow: 0px 0px 10px #a5a5a5;
    margin-top: 4%;
    border-radius: 7px;
}
.titulo_registrar{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}
.logo_titulo{
    position: relative;
    float: left;
    width: 50%;
}
.logo_titulo img{
    max-width: 90%;
}
.header_titulo{
    position: relative;
    float: left;
    width: 45%;
    left: 2.5%;
}
.header_titulo h1{
    color: #5ca323;
}
.header_titulo p{
    font-size: 12pt;
    color: #1362ad;
}
.content_registrar{
    position: relative;
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #acff6a;
    border-bottom: 1px solid #acff6a;
}
.dual_content{
    position: relative;
    float: left;
    width: 45%;
    margin-left: 2.5%;
    margin-right: 2.5%;
}
.set_fields{
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}
.icon_set{
    position: relative;
    float: left;
    width: 10%;
    text-align: center;
    font-size: 15pt;
    background-color: #acff6a;
    border: 1px solid #5ca323;
    color: #5ca323;
    border-radius: 5px 0px 0px 5px;
    z-index: 9;
}
.input_set{
    position: relative;
    float: left;
    width: 85%;
}
.input_set input{
    width: 100%;
    padding: 4px 8px;
    border: 1px solid #acff6a;
    font-size: 14px;
    border-radius: 0px 5px 5px 0px;
    transition: all 230ms linear;
}
.input_set input:focus{
    border: 1px solid #014b8c;
    box-shadow: 0px 0px 7px #014b8c;
    transition: all 230ms linear;
}
.action_content{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.button_action{
    position: relative;
    float: left;
    width: 20%;
    margin-right: 14%;
    margin-left: 14%;
    text-align: center;
    padding: 5px 8px;
    font-size: 18pt;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
}
.button_action a{
    color: #fff;
    text-decoration: none;
}
.button_action input{
    display: none;
}
.button_action label:hover{
    cursor: pointer;
}
.accept{
    background-color: #0dbf01;
}
.cancel{
    background-color: #EE3902;
}
#correcto{
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 10%;
    color: #014b8c;;
}
#correcto i{
    font-size: 95px;
    color:  #5da31f;
    text-shadow: 0px 0px 6px #014b8c;
}
#correcto img{
    max-width: 350px;
}
@keyframes desvanece{
    from{
        border: 1px solid red;
        box-shadow: 0px 0px 7px red;
    }
    to{
        border: 1px solid #acff6a;
    }
}
@media screen and (max-width: 1040px){
    #registrar{
        padding: 0;
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
    }
}
@media screen and (max-width: 900px){
    #registrar{
        box-shadow: none; 
    }
    .button_action{
        margin-left: 12%;
        margin-right: 12%;
    }
}
@media screen and (max-width: 769px){
    .icon_set{
        width: 15%;
    }
    .input_set{
        width: 80%;
    }
}
@media screen and (max-width: 550px){
    .logo_titulo{
        width: 100%;
    }
    .logo_titulo img{
        max-width: 60%;
    }
    .header_titulo{
        width: 95%;
        text-align: center;
    }
    .dual_content{
        width: 95%;
    }
    .set_fields{
        margin-top: 3px;
        margin-bottom: 3px;
    }
    .icon_set{
        padding: 8px 0px;
    }
    .input_set input {
        padding: 12px 8px;
    }
    .button_action{
        margin-left: 20%;
        margin-right: 12%;
        width: 35px;
        padding: 15px;
        border-radius: 50%;
    }
    .button_action label span, .button_action a span{
        display: none;
    }
}
@media screen and (max-width: 435px){
    .button_action{
        margin-left: 18%;
    }
}
@media screen and (max-width: 360px){
    .button_action{
        margin-left: 15%;
        margin-right: 14%;
    }
}
@media screen and (max-width: 340px){
    .button_action{
        margin-left: 16%;
        margin-right: 8%;
    }
}