@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:wght@300;400&family=Ubuntu&display=swap');

* {
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;

}


html {
    background-image: url(./img/fond_connexion_brillauto68.jpg);
    background-repeat: none;
    background-size: cover;
}

.register {
    justify-content:  center;
    text-align: center;
    align-items: center;
    display: flex;
    height: 100vh;
    flex-direction: column;
}

form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 25px;
    color: black;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 140px;
    padding-right: 140px;
    border: solid 2px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.2);
  }

form h1 {
    margin-bottom: 25px;
}

form input[type="text"], form input[type="email"], form input[type="password"] {
    transition: 1.2s;
  }

form input[type="text"]:focus, form input[type="email"]:focus, form input[type="password"]:focus {
    border: none;
    outline: none;
    transition: 1.2s;
    transform: scale(1.4);
  }

form label {
    font-size: 20px;
}

  form input {
    border-top: none;
    border-left: none;
    border-right: none;
    border: bottom 2px black;
    background: transparent;
  }


  form .button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 10px;
    border: 2px;
    background-color: rgb(227, 226, 226);
    margin-top: 50px;
    transition: 1.2s;
  }

  form .button:hover {
    cursor: pointer;
    transform: scale(1.1);
    transition: 1.2s;
  }

  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper .toggle-password {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .password-wrapper .toggle-password:hover {
    transform: scale(1.08);
    transition: 1.2s;
  }
  
  .password-wrapper .toggle-password.rotate {
    transform: rotate(180deg);
    transition: 1.2s;
  }

  .password-wrapper .toggle-password.rotate:hover {
    transform: scale(1.08);
    transition: 1.2s;
  }


.register a {
  font-size: 17px;
  margin-top: 10px;
  color: black;
}



.notification {
  display: flex;
  align-items: center;
}

.notification .notification-icon {
  margin-right: 10px;
  font-size: 20px;
}

.notification.success .notification-icon {
  color: #155724; /* Couleur de l'icône pour les notifications de succès */
}

.notification.error .notification-icon {
  color: #721c24; /* Couleur de l'icône pour les notifications d'erreur */
}
