/*
 * Custom FLOW360 by Carole Favero 
 */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
}
.panel-heading .logo img{
  max-width: 150px;
}
a {
  color:#527d6d;
}
label.col-md-2.col-form-label{
  min-width: 120px;
  float: left;
}
.form-control{
  font-size: 0.9rem;
  font-weight: 500;
}
.custom-radio{
   border: none; 
}
.custom-radio input[type="radio"] {
  display: none; 
}

.custom-radio span {
  width: 16px;
  height: 16px;
  border: 1px solid #ccc; 
  border-radius: 50%; 
  display: inline-block;
  position: relative;
  background-color: #fff; 
  transition: background-color 0.2s;
}

.custom-radio input[type="radio"]:checked + span {
  background-color: #000; /* Couleur du fond quand sélectionné */
  border-color: #000; /* Couleur du bord quand sélectionné */
}

.custom-radio input[type="radio"]:checked + span::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff; /* Couleur du "point noir" */
}

/********Bubble background *******/

.ball1 {
  -webkit-animation: 15s linear 3s infinite moveDownAndLeft;
  animation: 15s linear 3s infinite moveDownAndLeft;
}
.ball2 {
  -webkit-animation: 10s linear 3s infinite moveUpAndLeft;
  animation: 10s linear 3s infinite moveUpAndLeft;
}
.ball3 {
  -webkit-animation: 10s linear 3s infinite moveDownAndLeft;
  animation: 10s linear 3s infinite moveDownAndLeft;
}
.ball4 {
  -webkit-animation: 15s linear 3s infinite moveUpAndLeft;
  animation: 15s linear 3s infinite moveUpAndLeft;
}

.bubbles {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.bubble1 {
  top: 45%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: #285d49;
  opacity: 0.6;
}
.bubble2 {
  top: 35%;
  right: 3%;
  width: 63px;
  height: 63px;
  background: #eccdd4;
  opacity: 0.6;
}
.bubble3 {
  width: 100px;
  height: 100px;
  background: #ccdcbe;
  top: 15%;
  left: 7%;
}
.bubble4 {
  top: 60%;
  left: 2%;
  width: 127px;
  height: 127px;
  background: #f1ce4a;
  opacity: 0.3;
}
.bubble5{
  right: 10%;
  width: 155px;
  bottom: 40%;
  height: 155px;
  background: #f1ce4a;
  opacity: 0.5;
}
.bubble6 {
  top: 52%;
  right: 8%;
  background: #ccdcbe;
  height: 300px;
  width: 300px;
  opacity: 0.5;
}
/* ***** BUBBLES */

@keyframes gradient {
  0% { background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%; } 
}

@-webkit-keyframes moveUpAndLeft {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -20px);
            transform: translate(-10px, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes moveUpAndLeft {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10px, -20px);
            transform: translate(-10px, -20px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes moveDownAndLeft {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  50% {
    -webkit-transform: translate(-10px, 10px) rotate(1deg);
            transform: translate(-10px, 10px) rotate(1deg);
  }
  75% {
    -webkit-transform: translate(-10px, 10px) rotate(-1deg);
            transform: translate(-10px, 10px) rotate(-1deg);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes moveDownAndLeft {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-10px, 10px);
            transform: translate(-10px, 10px);
  }
  50% {
    -webkit-transform: translate(-10px, 10px) rotate(1deg);
            transform: translate(-10px, 10px) rotate(1deg);
  }
  75% {
    -webkit-transform: translate(-10px, 10px) rotate(-1deg);
            transform: translate(-10px, 10px) rotate(-1deg);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
/* ***** PAGE CONNEXION */
section.login-form, section.register-form, section.password-email, section.password-bis {
  background: #ffffff;
  position: absolute;
  width: calc(100% - 30px);
  max-width: 600px;
  left: 0;
  z-index: 999999;
  margin: 60px auto !important;
  border-radius: 60px;
  border: 2px solid #ccdcbe;
  padding: 40px 30px;
  right: 0;
}
.panel-heading{
  text-align: center;
  padding: 10px 10px 50px 10px;
}

@media (max-width: 640px) {
  section.login-form  {
    max-width: 400px;
  }
}
.forgot-password{
  text-align: center;
  margin-top: -10px;
  margin-bottom: 30px;
}
.forgot-password a{
  color:#666666;
  font-style: italic;
  Font-size:0.75rem;
}
#submit-login{
  background: #000;
  width: 170px;
  margin: 0 auto;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFF;
  border: none;
  font-size: 0.8rem;
}
#submit-login:hover{
  background: #527d6d;
}
.no-account{
  text-align: center;
  margin-top: 40px;
}
.no-account a{
  color: #527d6d;
  font-weight:500;
}
.go-home{
  text-align: center;
  margin-top:5px;
}
.go-home a{
  color: #000;
  font-weight:500;
}
/* ***** PAGE INSCRIPTION */
section.register-form p{
  text-align:center;
  font-size: .8rem;
}
section.register-form p a{
  color: #527d6d;
}

.register-form .form-control{
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0px 10px;
}
.btn-outline-secondary{
  border: none;
  padding: 0px 0px 0px 5px;
  color: #777;
  background-color: transparent;
}
.btn-outline-secondary:hover{
  border: none;
  color: #000;
  background-color: transparent;
}
span.form-control-comment {
  font-size: .65rem;
  opacity: .8;
  padding-top: .5rem;
  padding-bottom: 0;
}
.form-control-comment{
  margin-top: -15px;
  font-size: .65rem;
  font-style: italic;
}
section.register-form label.col-md-2.col-form-label {
  min-width: 120px;
}
input#field-email.form-control, input#field-password.form-control{
  padding: .6rem 1rem;
  border-bottom: 1px solid #ccc;
}
section.register-form .field-password-policy{
  margin-top: 15px;
  margin-bottom: 30px;
}
.custom-checkbox{
  font-size: .7rem;
}
section.register-form .form-control-submit{
  display:none;
}
section.register-form .form-control-submit.bis-button {
  background: #000;
  width: 230px;
  margin: 0 auto;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFF;
  border: none;
  font-size: 0.8rem;
  margin-top: 40px;
  display: block;
}
section.register-form .form-control-submit.bis-button:hover{
  background: #527d6d;
}

@media screen and (max-width: 768px) {
  .form-control-valign{
    max-width: 200px;
    margin-top: -45px;
    margin-left: 100px;
  }
  .register-form .form-group {
    margin-top: 10px;
  }
  .register-form .col-form-label{
    padding-bottom: 0px;
  }
  .register-form .form-control {
    padding: 5px 10px 0px 10px;
  }
  .form-control-comment{
    margin-top: -5px;
  }
  section.register-form .field-password-policy {
  margin-bottom: 0px;
  }
}

/* ***** PAGE PASSWORD */
.password-email p.title{
  font-weight: 500;
}

.password-email form.align-items-center input#email.form-control.col-md-8{
  border-bottom: 1px solid #ccc;
  padding: 0px 10px;
}

#send-reset-link{
  background: #000;
  width: 320px;
  margin: 0 auto;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFF;
  border: none;
  font-size: 0.8rem;
  margin-top: 40px;
}
.password-bis p.title{
  font-weight: 500;
}
