.group {
    position: relative;
    margin-bottom: 45px;
}

.input-1 {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    appearance: none;
    display: block;
    background: #fafafa;
    color: #636363;
    width: 300px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

.input-1:focus {
    outline: none;
}

/* Label */
.label-1 {
    color: #999999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: all 0.2s ease;
}


/* active */
.input-1:focus~.label-1,
.input-1.used~.label-1 {
    top: -20px;
    transform: scale(.75);
    left: -2px;
    /* font-size: 14px; */
    color: #03b5bc;
}

/* Underline */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #03b5bc;
    transition: all 0.2s ease;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}


/* active */
.input-1:focus~.bar:before,
.input-1:focus~.bar:after {
    width: 50%;
}


/* Highlight */
.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active */
.input-1:focus~.highlight {
    animation: inputHighlighter 0.3s ease;
}


/* Animations */
@keyframes inputHighlighter {
    from {
        background: #a8e6e8;
    }

    to {
        width: 0;
        background: transparent;
    }
}


/* Button */
.login-button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: .3em 0 1em 0;
    width: 100%;
    vertical-align: middle;
    color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    letter-spacing: 1px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #04868b;
    cursor: pointer;
    transition: all 0.15s ease;
    background: #03b5bc;
    text-shadow: 1px 1px 0 #27c1cc80;
}

.login-button:focus {
    outline: 0;
}

.login-button:hover {
    background: #05d0d7;
}


/* Ripples container */
.ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}


/* Ripples circle */
.ripplesCircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #ffffff40;
}

.ripples.is-active .ripplesCircle {
    animation: ripples .4s ease-in;
}


/* Ripples animation */
@keyframes ripples {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

span.error-message {
    color: #e60033;
    font-size: 13px;
}