.text-container
{
    margin: 0 auto;
    min-height: 75px;
    position: relative;
    transform: translate(0%, 0%);
    width: 300px;
}

input[type=text]
{
    font-weight: 600;
    width: 100%;
    height: 20px;
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background-color: transparent;
	z-index: 100;
}

textarea
{
    font-weight: 600;
    width: 100%;
    color: #fff;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background-color: transparent;
	z-index: 1000;
}

.placeholder
{
    bottom: 0px;
    color: #0092dc;
    font-size: 16px;
    left: 0;
	top: -25px;
    margin: 0;
    position: absolute;
    transition: all 0.2s ease-out 0s;
	z-index:-1;
}

.lb
{
    font-size: 10px;
    position: absolute;
    z-index: 40;
    left: -30px;
	top: 10px;
    margin: 0;
    transition: .2s all ease-out;
    opacity: 0;
    color: #0092dc;
}

.lb-area{ top: -60px !important; }

.lb--animate
{
    left: 0;
    opacity: 1;
}

.placeholder--animate
{
    left: 20px;
    opacity: 0;
}

.text-border
{
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 0;
    height: 2px;
    margin: 0;
    padding: 0;
    transition: .2s width ease-out;
    background-color: #0092dc;
}

.border--animate
{
    width: 100%;
}