/**
 * CSS-based animations which can be used in the OTRS agent interface using Core.UI.Animate
 *
 * @project     OTRS (http://www.otrs.org) - Agent Frontend
 * @copyright   OTRS AG
 * @license     AGPL (http://www.gnu.org/licenses/agpl.txt)
 */

/**
 * @package     Skin "Default"
 * @section     Login screen
 */

@media screen,projection,tv,handheld {

.LoginScreen {
    padding-top: 90px;
}

.LoginScreen .MainBox {
    padding: 0px;
}

.LoginScreen .ErrorBox,
.LoginScreen .SuccessBox {
    margin-bottom: 10px;
    padding: 10px 25px;
}

.LoginScreen .SuccessBox {
    background-color: #6AC0CF;
}

#LostPassword,
#BackToLogin {
    color: #999;
}

.LoginScreen #Header {
    display: none;
}

.LoginScreen #Footer {
    border: 0px;
    bottom: 0px;
    box-sizing: border-box;
    padding: 10px 0px;
    position: fixed;
    text-align: center;
    text-shadow: 1px 1px 1px #fff;
    text-transform: uppercase;
    width: 100%;
}

#Footer a {
    color: #999;
    font-size: 11px;
    display: inline-block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    transition: all ease 0.4s;
    text-transform: none;
}

#Footer a span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/signet_small_bw.png);
    background-size: cover;
    margin: 0px auto 10px auto;
    opacity: 0.3;
    transition: all ease 0.4s;
}

#Footer a:hover {
    text-decoration: none;
    color: #555;
}

#Footer a:hover span {
    opacity: 1;
    transform: rotate(90deg);
}

.LoginBox,
#PasswordBox {
    width: 350px;
    margin: 0px auto;
}

.LoginBox > .WidgetSimple,
#PasswordBox > .WidgetSimple {
    padding: 15px;
}

.LoginBox > .WidgetSimple form > fieldset > div,
#PasswordBox > .WidgetSimple form > fieldset > div {
    position: relative;
}

.LoginBox input,
#PasswordBox input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 5px;
}

.LoginBox .Error.Center.Spacing:empty,
#PasswordBox .Error.Center.Spacing:empty {
    display: none;
}

.LoginBox .CallForAction.Fullsize,
#PasswordBox .CallForAction.Fullsize {
    width: 100%;
}

.LoginBox .CallForAction.Fullsize span,
#PasswordBox .CallForAction.Fullsize span {
    padding: 7px 10px;
}

/**
 * @subsection  Customizable logos
 */
#LoginLogo {
    background: transparent url(../img/loginlogo_default.png) center no-repeat;
    background-size: contain;
    height: 70px;
    margin-bottom: 30px;
}

} /* end @media */
