* {
    box-sizing: border-box;
}

html, body {
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Segoe UI Symbol";
    padding-top: 75px;
}

.container {
    align-items: center;
    background-color: #EFF7F3;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    padding: 35px 50px 55px 50px;
}

.title {
    background-image: url("/fmd/javax.faces.resource/images/brand.png.xhtml");
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: 15px 50%;
    font-size: 27px;
    margin-bottom: 0px;
    padding: 15px 15px 15px 70px;
    width: 500px;
}

.title .small {
    color: #808080;
    font-size: 23px;
    padding-left: 10px;
}

form {
    background-color: white;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    box-sizing: border-box;
    margin: 0;
    padding: .7rem .7rem 1rem .7rem;
    width: 500px;
}

.layout {
    align-items: stretch;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}

.layout .ui-messages>div {
    padding: .7rem;
}

.layout .ui-inputgroup .ui-inputgroup-addon {
    padding: .3rem .7rem;
}

.layout>* {
    margin: 0px 5px 7px 5px;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Segoe UI Symbol";
}

.layout>*:last-child {
    margin-bottom: 0px;
}

.layout label {
    padding: 0 2px;
}

.layout input {
    background-color: #fff;
    border: 1px solid #d6d6d6;
    border-radius: 3px;
    font-size: 16px;
    outline: medium none;
    padding: 4px;
    transition: .2s;
    width: 100%;
}

.layout button {
    align-self: flex-start;
    background: #2399e5;
    border: 1px solid #1f89ce;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-top: 9px;
    padding: 4px 14px 5px 7px;
    position: relative;
    text-align: center;
    transition: background-color .2s;
    white-space: nowrap;
    width: auto;
}

.layout button .fa {
    display: inline-block;
    font-size: 16px;
    margin-right: 7px;
}