@charset "UTF-8";
@import "font-awesome.min.css";
@import "font.css";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    color: #3d3d3d;
}

body {
    height: 100%;
    width: 100%;
    font-family: Calibri, sans-serif;
    font-size: 16px;
    overflow: hidden;
    background: url("../img/bg-image.jpg") no-repeat center center fixed;
    -webkit-background-size: cover; /* For WebKit*/
    -moz-background-size: cover; /* Mozilla*/
    -o-background-size: cover; /* Opera*/
    background-size: cover; /* Generic*/
}

body > div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body > div > .main-form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 28px 24px 16px 24px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 600px;
}

.g_form {
    z-index: 1000;
}

.form-item {
    margin: 0 0 12px 0;
    position: relative;
}

.form-item input[type="text"], .form-item input[type="password"] {
    border: 1px solid #cecece;
    height: 60px;
    color: #a0a0a0;
    background: #fff;
    padding: 0 0 0 57px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    font-size: 22px;
}

.form-item input[type="submit"] {
    height: 60px;
    width: 100%;
    font-size: 22px;
    border: 0;
    background: #3d3d3d;
    color: #fff;
    text-transform: uppercase;
    margin-top: 12px;
    cursor: pointer;
    text-align: center;
    padding: 0;
    font-family: inherit;
}

.form-item input[type="submit"]:hover {
    background-color: #808080;
    -moz-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}


.form-item label {
    display: none;
}

.form-item i {
    color: #a0a0a0;
    position: absolute;
    left: 25px;
    top: 20px;
    font-size: 22px;
}

#input-error {
    font-size: 14px;
    color: #d72134;
}

@media only screen and (max-width: 600px) {
    body > div > .main-form {
        padding: 18px 14px 11px 14px;
    }

    .form-item {
        margin: 0 0 7px 0;
    }

    .form-item input[type="submit"] {
        margin-top: 7px;
    }
}

.form-item .idp-link {
    height: 60px;
    width: 100%;
    font-size: 22px;
    border: 0;
    background: #3d3d3d;
    color: #fff;
    text-transform: uppercase;
    margin-top: 12px;
    cursor: pointer;
    text-align: center;
    padding: 0;
    line-height: 60px;
}

.form-item .idp-link a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.form-item .idp-link:hover {
    background-color: #808080;
    -moz-transition: all 0.5s ease-in;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}