#login{
    position: relative;
    float: left;
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;
    padding: 6px;
    box-shadow: 0px 0px 10px #2b2b2b;
    margin-top: 7%;
    border-radius: 5px;
}
.head_login{
    position: relative;
    float: left;
    width: 100%;
}
.head_login img{
    max-width: 250px;
}
.titulo_login{
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5px;
    border-bottom: 1px solid #478fd0;
}
.body_login{
    position: relative;
    float: left;
    width: 90%;
    left: 5%;
}
.set_body{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.icon_set{
    position: relative;
    float: left;
    width: 10%;
    text-align: center;
    background-color: #acff6a;
    border: 1px solid #5ca323;
    color: #5ca323;
    font-size: 15pt;
    padding: 3px 5px;
    border-radius: 5px 0px 0px 5px;
    z-index: 9;
}
.field_set{
    position: relative;
    float: left;
    width: 85%;
}
.field_set input{
    padding: 6px 4px;
    color: #004b8e;
    width: 100%;
    font-size: 16px;
    border-radius: 0px 5px 5px 0px;
    border: 1px solid #acff6a;
    transition: all 230ms linear;
}
.field_set input:focus{
    border: 1px solid #004b8e;
    box-shadow: 0px 0px 6px #004b8e;
    transition: all 230ms linear;
}
.send_set{
    position: relative;
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.button_send input{
    display: none;
}
.button_send{
    position: relative;
    float: left;
    width: 33.33%;
    left: 33.33%;
    text-align: center;
    padding: 4px;
    border-radius: 10px;
    font-size: 16pt;
    background-color: #478fd0;
    color: #fff;
    transition: all 230ms linear;
}
.button_send:hover{
    transition: all 230ms linear;
    background-color: #004b8d;
    cursor: pointer;
}
.button_send label:hover{
    cursor: pointer;
}
.action_login{
    position: relative;
    float: left;
    width: 90%;
    left: 5%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: right;
    font-size: 14px;
}
.action_login a{
    color: #478fd0;
    text-decoration: none;
    transition: all 230ms linear;
}
.action_login a:hover{
    color: #004b8d;
    transition: all 230ms linear;
}
.register_action{
    position: relative;
    float: left;
    width: 100%;
    text-align: right;
    padding-top: 10px;
    padding-bottom: 10px;
}
.register_action a{
    background-color: #acff6a;
    padding: 4px 10px;
    color: #5ca323;
    transition: all 230ms linear;
    font-size: 16px;
    border-radius: 7px;
}
.register_action a:hover{
    color: #fff;
    background-color: #5ca323;
    transition: all 230ms linear;
}
@media screen and (max-width: 900px){
    #login{
        width: 60%;
        margin-left: 20%;
        margin-right: 20%;
    }
}
@media screen and (max-width: 769px){
    #login{
        width: 75%;
        margin-left: 12%;
        margin-right: 12%;
    }
}
@media screen and (max-width: 500px){
    #login{
        box-shadow: none;
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 14%;
    }
}