﻿body 
{
	background:							url(../images/fond_login.jpg) no-repeat center center fixed; 
	-webkit-background-size:            cover;
	-moz-background-size:               cover;
	-o-background-size:                 cover;
	background-size:                    cover;
}
.Gexsi_Login
{
    width:                              400px;
    margin:                             auto ;
    padding:                            20px;
    margin-top:                         200px;
    text-align:                         center;
    vertical-align:                     middle;
    
    border:                             1px solid #ccc ;
    border-radius:                      5px;
    box-shadow:                         5px 3px 5px #333;
    
    /* animation */
    -webkit-animation:                  bounceInLeft 1s ;
	-moz-animation:                     bounceInLeft 1s ;
	-o-animation:                       bounceInLeft 1s ;
	animation:                          bounceInLeft 1s ;
	
    position: relative;
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
	}
	
	80% {
		-webkit-transform: translateX(-10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateX(30px);
	}
	
	80% {
		-moz-transform: translateX(-10px);
	}
	
	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateX(30px);
	}
	
	80% {
		-o-transform: translateX(-10px);
	}
	
	100% {
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateX(30px);
	}
	
	80% {
		transform: translateX(-10px);
	}
	
	100% {
		transform: translateX(0);
	}
}


div.accountInfo
{
    width:                              400px;
    text-align:                         center ;
    
}
div.fondLogin
{
    /*background:							url(../images/fond_login.png) repeat-x;
    background:							#fff ;*/
    height:                             134px;
    padding-top:                        20px;
    padding-left:                       10px; 
    
}

.login
{   
    margin-left: auto;
	margin-right: auto;
	vertical-align:middle;
}

fieldset
{
    margin:                             0 auto;
    padding:                            10px;
    border:                             none;/*1px solid #ccc;*/
}

fieldset p 
{
    margin:                             2px 12px 10px 10px;
}

fieldset.login label
{
    display:                            block;
    font:								12px Arial, Helvetica, sans-serif;
	color:								#333;
}

fieldset label.inline 
{
    display:                            inline;
    font:								12px Arial, Helvetica, sans-serif;
	color:								#00A1D7;
	margin:                             auto;
}

.legend 
{
    font:								bold 1.1em Arial, Helvetica, sans-serif;
	color:								#608D2B;
    padding:                              2px 4px 2px 4px;
}

input.textEntry, input.passwordEntry 
{
    width:                              320px;
    font:								12px Arial, Helvetica, sans-serif;
	color:								#333;
	background:                         rgba(255, 255, 255, 0.9);
	background:                         -moz-linear-gradient(90deg, #fff, #eee); /* Firefox */
	background:                         -webkit-gradient(linear, left top, left bottom, from(#eee), to(#fff), color-stop(0.2, #fff)); /* Webkit */
	border:                             1px solid #aaa;
	border-radius:                      3px;
	-moz-border-radius:                 3px;
	-webkit-border-radius:              3px;
	box-shadow:                         0 0 3px #aaa;
	-moz-box-shadow:                    0 0 3px #aaa;
	-webkit-box-shadow:                 0 0 3px #aaa;
	padding:                            5px;
}

.submitButton
{
    text-align:                         right;
    padding-right:                      10px;
    margin-top:                         10px;              
}


.failureNotification
{
    font-size:                          1.2em;
    color:                              Red;
}

.tbFailureNotification
{
    margin-top:                         20px;
}


.modalBackground {
	background-color:                   #cccccc; /*#465971;*/
	filter:                             alpha(opacity=70);
	opacity:                            0.7;
}
.modalPopup {
	background-color:                   #E5E5E5;
	border-width:                       3px;
	border-style:                       solid;
	border-color:                       #999;
	font-size:                          1.2em;
    color:                              Red;
	padding:                            3px;
	text-align:                         center;
	width:                              350px;
	padding-top:                        20px;
	
}
.okBouton
{
    padding:                            5px;
    text-align:                         center;
    margin-top:                         15px;
}

.button-bevel {
  vertical-align: top;
  border-radius: 4px;
  border: none;
  padding: 10px 25px 12px;
  color: #fff;
}

.green {
  background: #82cc5d;
  background: -moz-linear-gradient(top,  #82cc5d 0%, #53b73c 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#82cc5d), color-stop(100%,#53b73c));
  background: -webkit-linear-gradient(top,  #82cc5d 0%,#53b73c 100%);
  background: -o-linear-gradient(top,  #82cc5d 0%,#53b73c 100%);
  background: -ms-linear-gradient(top,  #82cc5d 0%,#53b73c 100%);
  background: linear-gradient(to bottom,  #82cc5d 0%,#53b73c 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#82cc5d', endColorstr='#53b73c',GradientType=0 );
  border: 1px solid #429E34;
}

  .green:hover {
    background: #99cc80;
    background: -moz-linear-gradient(top,  #99cc80 0%, #53b73c 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#99cc80), color-stop(100%,#53b73c));
    background: -webkit-linear-gradient(top,  #99cc80 0%,#53b73c 100%);
    background: -o-linear-gradient(top,  #99cc80 0%,#53b73c 100%);
    background: -ms-linear-gradient(top,  #99cc80 0%,#53b73c 100%);
    background: linear-gradient(to bottom,  #99cc80 0%,#53b73c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99cc80', endColorstr='#53b73c',GradientType=0 );
  }
  
  .button-bevel:active {
    position: relative;
    top: 5px;
  }
  
.button-bevel.green {
  box-shadow: #439230 0 6px 0px, rgba(0, 0, 0, 0.3) 0 10px 3px;
}

  .button-bevel.green:active {
    box-shadow: #439230 0 3px 0, rgba(0, 0, 0, 0.2) 0 6px 3px;  
  }

.button span, .button-bevel span {
  font-family: 'EntypoRegular';
  font-size: 20px;
  font-weight: normal;
  vertical-align: middle; 
  line-height: 0;
  margin-right: .1em;
}

#iconeAPropos
{
    position:							absolute;
	bottom:								10px;
	right:                              10px;
}

.lbl_form 
{
	font:								11px Arial, Helvetica, sans-serif;
	text-align:                         left;
	padding-left:                       5px;
	/* laurent : pour metttre ... à la fin du label s'il n'y a plus de place */
	white-space:                        nowrap;
    overflow:                           hidden;
    text-overflow:                      ellipsis;
    -o-text-overflow:                   ellipsis;
    -ms-text-overflow:                  ellipsis;
}

.lbl_form_orange {
	color:								#EF7F20;
}

.lbl_form_titre
{
    font: 12px Arial, Helvetica, sans-serif;
    color: #E41A6E;
    text-decoration: underline;
    font-weight: bold;
    text-align: left;
    padding: 10px 0;
}

.lblErreur
{
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2em;
}


/* --- MFA EURO overlay --- */
.mfa-overlay {
	position: fixed;
	inset: 0;
	background: rgba(9, 21, 99, 0.40);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
}

.mfa-card {
	background: #ffffff;
	border-radius: 24px;
	padding: 28px 26px 24px;
	max-width: 420px;
	width: 92%;
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
	font-family: Rubik, system-ui;
	color: #0f172a;
	text-align: center;
	position: relative;
}

.mfa-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--iren-deep);
}

.mfa-subtitle {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 18px;
}

.mfa-timer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 16px;
}

.mfa-timer-circle {
	width: 40px;
}

.mfa-timer-bg {
	fill: none;
	stroke: #e5e7eb;
	stroke-width: 8;
}

.mfa-timer-progress {
	fill: none;
	stroke: var(--iren-primary);
	stroke-width: 8;
	stroke-linecap: round;
	transform-origin: 50% 50%;
	transform: rotate(-90deg);
	stroke-dasharray: 339.292; /* sera recalculé en JS, valeur par défaut */
	stroke-dashoffset: 0;
}

.mfa-timer-label {
	text-align: center;
	font-size: 13px;
	color: var(--muted);
}

	.mfa-timer-label div:first-child {
		margin-bottom: 4px;
	}

#mfa-timer-value {
	font-weight: 700;
	font-size: 22px;
	color: var(--iren-deep);
}

.mfa-input {
	margin-top: 4px;
	margin-bottom: 8px;
}

	.mfa-input input {
		text-align: center;
		font-size: 22px;
		letter-spacing: 0.3em;
		padding: 10px 12px;
	}

.mfa-actions {
	margin-top: 14px;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

.mfa-secondary-btn {
	background: #f3f4f6;
	border: none;
	color: #374151;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 3px;
	cursor: pointer;
}

	.mfa-secondary-btn:hover {
		background: #e5e7eb;
	}

.mfa-primary-btn {
	border-radius: 3px;
	padding: 8px 18px;
	font-size: 13px;
}

.mfa-close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, .6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #64748b;
	cursor: pointer;
	background: #ffffff;
}

	.mfa-close:hover {
		background: #f3f4f6;
	}

.mfa-primary-btn.is-loading {
	position: relative;
	padding-right: 40px;
	opacity: 0.9;
	cursor: wait;
}

	.mfa-primary-btn.is-loading::after {
		content: "";
		position: absolute;
		right: 10px;
		top: 50%;
		width: 16px;
		height: 16px;
		margin-top: 0px;
		border-radius: 999px;
		border: 2px solid rgba(255, 255, 255, 0.5);
		border-top-color: #ffffff;
		animation: mfa-spin 0.8s linear infinite;
	}

@keyframes mfa-spin {
	from {
		transform: translateY(-50%) rotate(0deg);
	}

	to {
		transform: translateY(-50%) rotate(360deg);
	}
}

.mfa-error {
	margin-top: 6px;
	margin-bottom: 4px;
	font-size: 13px;
	color: #b91c1c;
	background: #fef2f2;
	border-radius: 999px;
	padding: 6px 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	justify-content: center;
}

.mfa-error-icon {
	font-size: 14px;
}

:root {
	--iren-primary: #3272d1;
	--iren-deep: #091563;
	--muted: #5b6785;
}


.action_principale {
	background: #0459b7;
	background: linear-gradient( 90deg, #0459b7, #08adff);
	border: 1px solid #093c75;
	border-radius: 3px;
	box-shadow: 0 1px 0 #ffffff;
	color: #ffffff !important;
	cursor: pointer;
	font-family: Calibri;
	font-size: 1.1em;
	font-weight: bold;
	text-align: right;
	padding: 5px 10px;
	text-decoration: none;
	text-transform: uppercase;
}

	.action_principale:hover {
		background: #0D8BD9;
		background: linear-gradient(90deg, #7FC6BC, #60CBBC);
		border-color: #093c75;
		text-decoration: none;
		color: #093c75 !important;
	}

	.action_principale:active, .action_principale:focus {
		background: #0459b7 !important;
		background: linear-gradient(90deg, #067cd3, #0bcdff);
		border-color: #093c75;
		outline: none;
		color: #ffffff !important;
	}

	.action_principale:disabled {
		cursor: not-allowed;
		opacity: 0.5;
	}