.inputContainer {
    position: relative;
    margin-top: 40px;
}

.lineInput, .textarea1 {
    background: none;
    color: #606060;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #c6c6c6;
    font-family: sans_regular;
}
.lineInput:focus, .textarea1:focus {
    outline: none;
}
.lineInput:focus ~ .lineInputLabel, .textarea1:focus ~ .lineInputLabel, .lineInput:valid ~ .lineInputLabel, .textarea1:valid ~ .lineInputLabel {
    top: -14px;
    transform: scale(0.8);
    transform-origin: left;
    color: var(--primary-color);
    left: 0;
}
.lineInput:focus ~ .lineInputBar:before, .textarea1:focus ~ .lineInputBar:before {
    width: 100%;
}

.lineInputLabel {
    color: #a9a9a9;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 300ms ease all;
    white-space: nowrap;
    font-family: sans_bold;
}
.lineInputBar {
    position: relative;
    display: block;
    width: 100%;
}
.lineInputBar:before {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: var(--primary-color);
    transition: 300ms ease all;
    left: 0;
}