* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connexionBox {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  box-shadow: 0px 0px 29px -6px rgba(240, 18, 18, 0.48);
  border-radius: 5px;
  gap: 25px;
}

.connexionBox div {
  width: 100%;
  text-align: center;
}

.connexionBox div img {
  width: 100%;
}

.connexionBox form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}

.emailInput,
.passwordInput {
  width: 100%;
  display: flex;
}

.emailInput label,
.passwordInput label {
  width: 30%;
  padding: 15px;
  background-color: #f36b6b;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 0 0 5px;
}

.emailInput input,
.passwordInput input {
  width: 70%;
  padding: 15px;
  outline: none;
  border: 1px solid #f3bfbf;
  border-radius: 0 5px 5px 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.connexionBox input[type="submit"] {
  padding: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f36b6b;
  color: #fff;
  border: none;
  border-radius: 5px;
}

@media all and (max-width: 550px) {
  .connexionBox {
    width: 90%;
    height: 90%;
    justify-content: center;
    gap: 50px;
  }

  .connexionBox form {
    gap: 20px;
  }

  .connexionBox div img {
    width: 100%;
  }

  .emailInput label,
  .passwordInput label {
    font-size: 1rem;
  }

  .connexionBox input[type="submit"] {
    font-size: 1.2rem;
  }
}
