/* Increase the size of the keyboard */
.ui-keyboard div { font-size: 1.3em; }
.ui-keyboard-button { height: 2.3em; width: 2.3em; min-width: 1em; margin: .1em; cursor: pointer; overflow: hidden; line-height: 2em; -moz-user-focus: ignore; }


.line-login {
    background: white !important;
    /*border: 1px solid red;*/

    margin-top: 20vh; /* 20% of vertical height */
}


/* header area at the top of the form */
.line-login__header {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* wordware logo */
.line-login__header__wordware-img {
    width: 55px;
    margin-right: 10px;
}


/* submit button */
.line-login__submit {
    width: 100%;
}
.line-login__submit:hover {
    width: 100%;
}


/* form fields wrapper */
.line-login__fields {
    width: 80%;
    margin: auto;
}


/* input wrapper contains input + keyboard icon */
.line-login__input {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;

    margin-bottom: 15px;
}

.line-login__input input {
    width: 70%;
    margin-bottom: 0;
}

.line-login__keyboard-icon {
    width: 40px;
    margin: 0 auto;
}

.line-login__keyboard-icon svg {
    fill: #575757;
    display: block;
    transition: fill ease 0.2s;
}

.line-login__keyboard-icon svg:hover {
    fill: #393939;
    cursor: pointer;
}


.line-login__label {
    font-weight: bold;
}


@media (min-width: 1600px) {
    .line-login__fields {
        width: 60%;
    }
}