@import url("estilos.css");
@import url("stilo_boton.css");
@import url("stil-letra.css");
/*reposo*/
.efe {
    margin-bottom: 5px;
    padding: 10px;
}

.efe2,
.efe3 {
    font: 16px/16px verdama;
    padding: 0;
}

.efe1 {
    display: block;
    width: 400px;
    border: 2px solid silver;
    padding: 8px 10px;
    position: relative;
    box-sizing: border-box;
    border-radius: 4px;
    transition: .25s;
}

.efe1 .efe3 {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
}

.efe1 .efe2 {
    color: silver;
    position: absolute;
    top: 8px;
    left: 10px;
    transition: .25s;
}

/*focus*/
.efe1.focus {
    border-color: red;
}

.efe1 .efe2.focus {
    color: red;
}

/*top*/
.efe1 .efe2.top {
    left: 2px;
    top: -10px;
    font-size: 12px;
    background: white;
    padding: 0 5PX;
}

