
.inline_form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 1rem auto 0;
    max-width: 90%;
    position: relative;
}



.input-field {
    padding: 0 .5em 1em;
    position: relative;
    width: 100%;
}


label {
    display: block;
    position: relative;
    z-index: -9;
    /*top: 1.2rem;*/
    color: #444;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: top .3s ease, color .3s ease;
}

    label.raised {
        top: 0rem;
    }

    label.highlight {
        color: #333;
    }

[type="password"],
[type="text"] {
    color: #222;
    padding: .25rem 0 0;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    border: none;
    border-bottom: 1px solid #555;
    background: none;
    transition: color .3s ease;
}

    [type="password"]:focus,
    [type="text"]:focus {
        color: #333;
        outline: 0;
        background-color: transparent !important;
    }
