.input {
    margin: 10px 0 30px;
    position: relative
}

.input input {
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    height: 36px;
    padding: 6px 10px;
    width: 100%
}

.input input::-moz-placeholder {
    color: #999
}

.input input::placeholder {
    color: #999
}

.input input[verify=false] {
    border-color: #c80000
}

.input label {
    color: #333;
    font-size: 14px;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    position: absolute;
    top: -25px;
    transition: all .3s
}

.input label span {
    background-color: #c80000;
    border-radius: 50%;
    display: inline-block;
    height: 4px;
    width: 4px
}

.input input:focus+label,
.input input:invalid+label {
    top: -25px
}

.input input:focus+label[verify=false],
.input input:invalid+label[verify=false] {
    animation: vibration-ecb05951 .2s linear infinite;
    -o-animation: vibration-ecb05951 .2s linear infinite;
    -moz-animation: vibration-ecb05951 .2s linear infinite;
    -webkit-animation: vibration-ecb05951 .2s linear infinite;
    animation-iteration-count: 3;
    color: #c80000
}

.input .verify {
    color: #4066b8;
    top: -25px
}

.input .verify[verify=false] {
    animation: vibration-ecb05951 .2s linear infinite;
    -o-animation: vibration-ecb05951 .2s linear infinite;
    -moz-animation: vibration-ecb05951 .2s linear infinite;
    -webkit-animation: vibration-ecb05951 .2s linear infinite;
    animation-iteration-count: 3;
    color: #c80000
}

/* .input input[disabled],
.input input[readonly] {
    background-color: #d4d4d44d
} */

.input input[type=password] {
    font-family: Arial;
    font-size: 25px;
    letter-spacing: 3px
}

.vibration {
    animation: vibration-ecb05951 .2s linear infinite;
    -o-animation: vibration-ecb05951 .2s linear infinite;
    -moz-animation: vibration-ecb05951 .2s linear infinite;
    -webkit-animation: vibration-ecb05951 .2s linear infinite;
    animation-iteration-count: 3
}

@keyframes vibration-ecb05951 {
    0% {
        transform: translate(0)
    }

    50% {
        transform: translate(5px)
    }

    to {
        transform: translate(0)
    }
}