@font-face {
  font-family: "More Sugar Regular";
  font-style: normal;
  font-weight: normal;
  src: local("More Sugar Regular"), url("../font/MoreSugar-8MnBn.woff") format("woff");
}
@font-face {
  font-family: "More Sugar Extras";
  font-style: normal;
  font-weight: normal;
  src: local("More Sugar Extras"), url("../font/MoreSugarExtras-RpO8E.woff") format("woff");
}
@font-face {
  font-family: "More Sugar Thin";
  font-style: normal;
  font-weight: normal;
  src: local("More Sugar Thin"), url("../font/MoreSugarThin-rgEwB.woff") format("woff");
}
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #f6f8fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
}

.login-container {
  background: rgba(68, 170, 255, 0.4);
  color: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1333333333);
  width: 370px;
  max-width: 90vw;
  padding: 32px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.login-logo {
  margin-bottom: 18px;
}

.login-logo svg {
  width: 220px;
  height: 60px;
  display: block;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-form label {
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.login-form input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.5333333333);
  color: #222;
  font-size: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.0666666667) inset;
  margin-bottom: 10px;
}

.login-form input:focus {
  outline: none;
  background: #fff;
}

.login-form button {
  background: #6af;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.0666666667);
  transition: background 0.2s;
}

.login-form button:hover {
  background: #3498fd;
}

.login-help {
  margin-top: 14px;
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.6);
}

.erreur {
  background: #ffe0e0;
  border: 1px solid #ffaaaa;
  color: #b00;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .login-container {
    padding: 18px 5vw 18px 5vw;
  }
  .login-logo svg {
    width: 100%;
    height: 40px;
  }
}/*# sourceMappingURL=connexion.css.map */