/*/*@import url(http://fonts.googleapis.com/css?family=Bree+Serif);*/


/*******************
SELECTION STYLING
*******************/

::selection {
    color: #fff;
    background: #f676b2;
    /* Safari */
}

::-moz-selection {
    color: #fff;
    background: #f676b2;
    /* Firefox */
}


/*******************
BODY STYLING
*******************/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body {
    /*//	background: url('graphs/bg.png')  ;*/
    background: url('graphs/fond-login.jpg');
    background-position: center;
    font-family: Arial;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    height: 100%;
    background-color: #EAEAEA;
}

a {
    text-decoration: none;
    -moz-opacity: 1;
    filter: alpha(opacity=1);
    opacity: 1;
}

a:hover {
    -moz-opacity: 0.6;
    filter: alpha(opacity=0.6);
    opacity: 0.6;
    cursor: hand;
}

#wrapper {
    height: 100%;
    padding: 125px 0px;
}


/* Download Button (Demo Only) */

.download {
    display: block;
    position: absolute;
    float: right;
    right: 25px;
    bottom: 25px;
    padding: 5px;
    font-weight: bold;
    font-size: 11px;
    text-align: right;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 0 rgba(256, 256, 256, 0.5);
}

.download:hover {
    color: rgba(0, 0, 0, 0.75);
    text-shadow: 1px 1px 0 rgba(256, 256, 256, 0.5);
}

.download:focus {
    bottom: 24px;
}


/*
.gradient {
	width: 600px;
	height: 600px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -300px;
	margin-top: -300px;

	background: url(graphs/gradient.png) no-repeat;
}
*/

.gradient {
    /* Center Positioning */
    width: 900px;
    height: 900px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -450px;
    margin-top: -450px;
    z-index: -2;
    /* Fallback */
    /*background-image: url(graphs/gradient.png); */
    background-repeat: no-repeat;
    /* CSS3 Gradient */
    background-image: -webkit-gradient(radial, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-radial-gradient(50% 50%, 40% 40%, rgba(255, 255, 255, 255), rgba(255, 255, 255, 0));
    background-image: -moz-radial-gradient(50% 50%, 50% 50%, rgba(255, 255, 255, 255), rgba(255, 255, 255, 0));
    background-image: -ms-radial-gradient(50% 50%, 50% 50%, rgba(255, 255, 255, 255), rgba(255, 255, 255, 0));
    background-image: -o-radial-gradient(50% 50%, 50% 50%, rgba(255, 255, 255, 255), rgba(255, 255, 255, 0));
}


/*******************
LOGIN FORM
*******************/

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    width: 360px;
    min-height : 630px;
    margin: auto;
    position: relative;
    border-radius: var(--ax-br-large, 10px);
    border: 1px solid var(--grey-ax-grey-300, #EBEDF0);
    background: #FFF;
    
    box-shadow: 0px 8px 16px -8px #00000008;
    box-shadow: 0px 13px 27px -5px #32325D40;

}


/*******************
HEADER
*******************/

.login-form .header {
    padding: 30px;
}

.login-form .header h1 {
    font-family: Arial;
    font-weight: 300;
    font-size: 28px;
    line-height: 34px;
    /*//	color: #414848;*/
    color: #237bea;
    text-shadow: 1px 1px 0 rgba(256, 256, 256, 1.0);
    margin-bottom: 10px;
}

.login-form .header span {
    font-size: 11px;
    line-height: 16px;
    color: #678889;
    text-shadow: 1px 1px 0 rgba(256, 256, 256, 1.0);
}
.login-form .full-width-label{
    display: block;
    width: 100%;
}


/*******************
CONTENT
*******************/

.login-form .content {
    padding: 0 30px 16px 30px;
}


/* Input field */

.login-form .content .input {
    width: 100%;
    padding: 16px;
    font-family: Arial;
    font-weight: 400;
    font-size: 14px;
    color: #9d9e9e;
    border-radius: var(--ax-br-small, 5px);
border: 1px solid var(--grey-ax-grey-300, #EBEDF0);
background: var(--grey-ax-grey-100, #FFF);
}


/* Second input field */

.login-form .content .password, .login-form .content .pass-icon {
    margin-top: 25px;
}

.login-form .content .input:hover {
    background: #dfe9ec;
    color: #414848;
}

.login-form .content .input:focus {
    background: #dfe9ec;
    color: #414848;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: transparent;
    transition: background-color 5000s ease-in-out 0s;
}

.user-icon, .pass-icon {
    display: block;
    cursor: pointer;
    width: 46px;
    height: 47px;
    position: absolute;
    left: 0px;
    padding-right: 2px;
    z-index: -1;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.content input:focus+div {
    left: -46px;
}


/* Animation */

.input, .user-icon, .pass-icon, .button, .register {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}


/*******************
FOOTER
*******************/

.login-form .footer {
    padding: 30px 30px 60px 30px;
    border-radius: 0px 0px var(--ax-br-large, 10px) var(--ax-br-large, 10px);
    border-top: 1px solid var(--grey-ax-grey-300, #EBEDF0);
    background: #F9F9FA;
}


/* Login button */

.login-form .footer .button {
    float: center;
    padding: 11px 25px;
    font-family: Arial;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    text-shadow: 0px 1px 0 rgba(0, 0, 0, 0.25);
    background: #0342AF;
    border-radius: 5px;
    cursor: pointer;
}

.login-form .footer .button:hover {
    background: #0255E3;
}

.login-form .footer .button:focus {
    position: relative;
    bottom: -1px;
    background: #003788;
}
.login-form .footer .info-axeo{
    color: #678889;
    text-align: center;
    text-shadow: 1px 1px 0px #FFF;
    font-style: normal;
    padding: 0 16px 0 16px;
    font-weight: 400;
    font-size: 12px; 
}


/* Register button */

.login-form .footer .register {
    width: 100%;
    display: block;
    float: center;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Arial;
    font-weight: 300;
    font-size: 13px;
    color: #414848;
    text-shadow: 0px 1px 0 rgba(256, 256, 256, 0.5);
}

.login-form .footer .register:hover {
    color: #3f9db8;
}

.login-form .footer .register:focus {
    position: relative;
    color: #3f9db8;
    bottom: -1px;
}


/* Register button */

.login-form .footer .oubli {
    display: block;
    float: center;
    padding: 5px;
    padding-top: 2px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Arial;
    font-weight: 300;
    font-size: 12px;
    color: #414848;
    text-shadow: 0px 1px 0 rgba(256, 256, 256, 0.5);
}

.login-form .footer .oubli:hover {
    color: #3f9db8;
}

.login-form .footer .register:focus {
    position: relative;
    bottom: -1px;
}

/* sso */

.login-form .sso {
    width: 100%;
    padding: 0 30px 16px 30px;
}

.login-form .sso .button {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    padding: var(--ax-padding-12, 12px) var(--ax-padding-24, 24px);
    flex-direction: column;
    justify-content: center;
    color: var(--grey-ax-grey-900, #444950);
    
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 171.429% */
    letter-spacing: 0.5px;
    align-items: center;
    border-radius: 4px;
    background: var(--grey-ax-grey-200, #F5F6F7);
}

.login-form .sso .button:hover {
    background: #EBEDF0;    
}

.login-form .sso .button:focus {
    position: relative;
    bottom: -1px;
    background: #E1EDFF;
    color: #0342AF;
    box-shadow: inset 0 1px 6px rgba(256, 256, 256, 0.75);
}

.login-form .sso .login-separator {
    width: 100%; 
    text-align: center; 
    border-bottom: 1px solid #EBEDF0; 
    line-height: 0.1em;
    margin: 10px 0 10px;
}

.login-form .sso .login-separator span {
    background:#FFF;
    color: #606770;
    font-family: Arial;
    font-size: 16px;
    font-weight: 400;
    padding: 0 10px;
}

.login-form .sso .errors {
    background: #FFF1F0;
    border: 1px solid #FFCCC7;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 5px;
    margin-bottom: 15px;
}
