
body {
  background: #181A1F;
  font-family: Arial, sans-serif;
  color: white;
}

.login-container {
  width: 420px;
  margin: 100px auto;
  padding: 30px;
  border: 0.001cm solid #181A1F;
  background: #181A1F;
  border-radius: 16px;
  box-shadow: 0 0 1px white;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: bold;
}

.logo {
  width: 50px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(91%) saturate(747%) hue-rotate(1deg) brightness(104%);
}

h1 {
  filter: brightness(0) saturate(100%) invert(77%) sepia(91%) saturate(747%) hue-rotate(1deg) brightness(104%);
  padding-bottom: 30px;
}

h2 {
  padding-bottom: 20px;
}

.indice {
  font-size: 12px;
}

input {
  width: 100%;
  max-width: 100%;
  height: 50px;
  margin-bottom: 15px;
  padding: 10px;
  display: block;
  border-radius: 8px;
  font-size: 16px;
  border: 0.001cm solid #181A1F;
  background: #181A1F;
  box-shadow: 0 0 1px white;
  color: white;
  caret-color: rgb(248, 208, 5);
  outline: none;
  transition: border 0.3s, box-shadow 0.3s, caret-color 0.3s;
}

input:hover {
  border-color: rgb(248, 208, 5);
  box-shadow: 0 0 1px rgb(248, 208, 5);
}

input:focus {
  border-color: rgb(248, 208, 5);
  box-shadow: 0 0 1px rgb(248, 208, 5);
  caret-color: rgb(248, 208, 5);
}

.password-field {
  position: relative;
}

.password-field input{
  padding: 0 44px 0 14px;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: orange;
  user-select: none;
  font-size: 18px;
}

.oeil1 {
  width: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

button {
  width: 100%;
  max-width: 100%;
  height: 50px;
  padding: 10px;
  display: block;
  background: rgb(248, 208, 5);
  border: 0.001cm solid #181A1F;
  border-radius: 8px;
  box-shadow: 0 0 1px white;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  opacity: 0.9;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}