#landing-container *:focus {
    outline: none;
}

#landing-container .wrap {
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 15px;
}

#landing-container .form-wrap {
    position: relative;
    height: 50px;
    width: 400px;
    /*margin: 50px auto 0;*/
}

#landing-container input {
    color: rgb(0, 0, 0);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    padding-top: 5px;
    border: none;
    font-size: 1em;
    font-weight: 200;
    background: none;
    opacity: 0;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.5s ease;
}

#landing-container .input {
    border: none;
    background-color: transparent;
}

#landing-container .input:hover, #landing-container .input:focus {
    border: none;
}

#landing-container .active input {
    opacity: 1;
    transition: all 0.5s ease 0.5s;
}

#landing-container svg {
    position: absolute;
    left: 0;
    top: 100%;
    overflow: visible;
    fill: none;
    z-index: 5;
    stroke: rgb(0, 0, 0);
    stroke-width: 3px;
}

#landing-container label {
    color: rgb(0, 0, 0);
    position: absolute;
    top: 15px;
    left: 5px;
    font-size: 1.3em;
    transition: all 0.5s ease;
}

#landing-container .active label {
    top: -25px;
    left: 0px;
    font-size: 1em;
    color: rgb(156,42,38);
    transition: all 0.5s ease 0.6s;
}

#landing-container .active + svg {
    stroke: rgb(156,42,38);
    transition: stroke 0.4s ease 0.6s;
}

#landing-container .input {
    height: 100%;
    width: 100%;
    position: relative;
    /*overflow: hidden;*/
}

#landing-container .input:before {
    content: "";
    position: absolute;
    height: 26px;
    width: 3px;
    right: 15px;
    bottom: -50px;
    background-color: transparent;
    transform-origin: inherit;
    transform: rotate(0deg);
    transition: transform 0.4s ease, bottom 0.4s ease 0.3s, background-color 0.2s ease 0.6s;
}

#landing-container .input:after {
    content: "";
    position: absolute;
    height: 26px;
    width: 3px;
    right: 15px;
    bottom: -50px;
    visibility: hidden;
    background-color: transparent;
    transform-origin: inherit;
    transform: rotate(0deg);
    transition: transform 0.4s ease, visibility 0.4s ease, bottom 0.4s ease 0.3s, background-color 0.2s ease 0.6s, height 0.2s ease 0.6s;
}

/* .valid:before {
    bottom: 10px;
    right: 16px;
    visibility: visible;
    background-color: #4CAF50;
    transform-origin: inherit;
    transform: rotate(40deg);
    transition: bottom 0.4s ease, transform 0.4s ease 0.3s;
}

.valid:after {
    bottom: 10px;
    height: 15px;
    visibility: visible;
    background-color: #4CAF50;
    transform-origin: inherit;
    transform: rotate(-45deg);
    transition: bottom 0.4s ease, visibility 0.4s ease 0.3s, transform 0.4s ease 0.3s;
} */

/* .invalid:before {
    bottom: 10px;
    visibility: visible;
    background-color: #ff5252;
    transform: rotate(40deg);
    transition: bottom 0.4s ease, transform 0.4s ease 0.3s;
}

.invalid:after {
    height: 26px;
    bottom: 10px;
    visibility: visible;
    background-color: #ff5252;
    transform: rotate(-45deg);
    transition: bottom 0.4s ease, visibility 0.4s ease 0.3s, transform 0.4s ease 0.3s;
} */