/* 
    Document   : login
    Created on : 02-08-2012, 12:03:26
    Author     : per kringelbach
    Description:
        Purpose of the stylesheet follows.
*/

*
{
    margin: 0px;
    padding: 0px;
}

html
{
    height: 100%;
}

body
{
    height: 100%;
    font: normal 11px Arial, Helvetica, sans-serif;
    color: #444;
    letter-spacing: -0.04em;
    overflow: hidden;
}

iframe
{
    border: none;
    position: absolute;
    width: 55%;
    height: 100vh;
    z-index: 1;
}

#wrapper
{
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: white;
}

.loginHolder
{
    text-align: right;
    width: 100%;
    height: 100%;
    top: 25%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.loginBox
{
    z-index: 2;
    text-align: left;
    font-size: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: white;
    padding: 10px;
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;

    display: flex;
    justify-content: center;
    align-items: center;
}

.loginForm img
{
    cursor: pointer;
}

.loginBox h2
{
    font-weight: normal;
}

#languageId
{
    padding: 5px 10px;
    background: #fff;
    border: lightgray 1px solid;
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
}
.loginBox label
{
    display: block;
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.loginForm
{
    min-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

form[name="login1"] div:last-child {
    margin-top: 20px;
}

.loginAction label
{
    font-size: 12px;
    color: #777;
    border-bottom: 1px solid lightGrey;
    padding: 0 0 5px;
    margin: 0 0 7px;
}

.loginAction label input
{
    vertical-align: middle;
}

input[type="checkbox"]
{
    margin: 3px 3px 3px 4px;
}

a.forgotpass
{
    display: block;
    font-size: 12px;
    text-decoration: none;
    color: #AAA;
}

a.forgotpass:hover
{
    text-decoration: underline;
    color: #8d1c1c;
}

.loginForm
{
    margin: 22px;
}

.textinput
{
    width:100%;
    border: 1px solid lightgray;
    background:#fff url('../img/textinputbg.gif') repeat-x;
    color: black;
    /* text-indent: 7px; */
    padding: 9px 14px;
    font-size: 15px;
    margin-bottom: 12px;
    overflow:visible;
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
}

.loginAction {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.button {
    display: inline-block;
    zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
    flex: 1;
    background-color: #4f37f5;
    color: #fff;
    outline: none;
    font: 15px/100% Arial, Helvetica, sans-serif;
    cursor: pointer;

    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);

    border: solid 1px #0076a3;
    border-radius: .5em;
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
}
#footer
{
    font-size: 11px;
    position:fixed;
    bottom:0px;
    text-align: center;
    width:100%;
    height:30px;
    line-height: 30px;
    vertical-align: middle;
    overflow:hidden;
}

#fa-row {
        display: flex;
        gap: 2em;
}

#fa-row input {
        width: 3em;
}


