/* Blocs identification Mon compte (creation + login cote a cote) */

.cf-ident-wrap {
  width: 800px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
}

.cf-ident-pair {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px 0;
  background: #D3DDF9;
  padding: 14px 10px 16px 10px;
  box-sizing: border-box;
}

.cf-ident-pair TD {
  width: 50%;
  vertical-align: top;
  height: 1px;
}

.cf-ident-card {
  background: #FFFFFF;
  border: 1px solid #B0B0BF;
  border-radius: 6px;
  box-shadow: 0 0 8px 0 #A0A5D5;
  overflow: hidden;
  min-height: 280px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.cf-ident-card-head {
  background: #E8EAF6;
  border-bottom: 1px solid #C5CAE9;
  padding: 12px 16px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #32335C;
  line-height: 1.35;
  flex: 0 0 auto;
}

.cf-ident-card-head SPAN {
  display: block;
  font-weight: normal;
  font-size: 11px;
  color: #505080;
  margin-top: 2px;
}

.cf-ident-card-body {
  padding: 16px 18px 18px 18px;
  background: #FAFAFF;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.cf-ident-card-body FORM {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.cf-ident-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
}

.cf-ident-field {
  margin: 0 0 14px 0;
}

.cf-ident-field LABEL {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #505080;
  margin: 0 0 4px 0;
}

.cf-ident-hint {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #7070A0;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.cf-ident-forgot {
  color: #FF8800;
  text-decoration: underline;
  font-weight: bold;
  white-space: nowrap;
}

.cf-ident-forgot:hover {
  color: #FF0000;
}

.cf-ident-field INPUT[type="text"],
.cf-ident-field INPUT[type="password"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 13px;
  padding: 6px 8px;
  border: 1px solid #BBC1DD;
  border-radius: 3px;
  background: #FFFFFF;
  color: #32335C;
}

.cf-ident-field INPUT[type="text"]:focus,
.cf-ident-field INPUT[type="password"]:focus {
  outline: none;
  border-color: #5076DE;
  box-shadow: 0 0 0 2px rgba(80, 118, 222, 0.2);
}

.cf-ident-check {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #505080;
  margin: 0;
  white-space: normal;
}

.cf-ident-check INPUT {
  vertical-align: middle;
  margin-right: 4px;
}

.cf-ident-actions .btn {
  white-space: nowrap;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #FFFFFF;
  background: #5076DE;
  border: 1px solid #3A5BB8;
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
}

.cf-ident-actions .btn:hover {
  background: #3A5BB8;
}

.btn-footer.btn-ssm {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  background: #6687E7;
  border: 1px solid #5070C8;
  border-radius: 14px;
  padding: 4px 14px;
  cursor: pointer;
  vertical-align: middle;
}

.btn-footer.btn-ssm:hover {
  background: #5070C8;
}

