/*body {
  background: url("../images/login-bg.jpg") no-repeat;
  background-size: cover;
}*/

p {
  margin: 0;
}

.login-page {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  font-family: "Inter", sans-serif;
}

.login-welcome {
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
  background: url("../images/login-bg.jpg") no-repeat;
  background-size: cover;
  display: flex;
  padding: 0px 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  border-radius: 150px 0 0 150px;
  overflow: hidden;
}
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.8;
  background: #cf0d0d;
}

.login-page .connexion {
  max-width: 300px;
}

.login-text {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  max-width: 640px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.login-text h2 {
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 90px; /* 125% */
  letter-spacing: -1.44px;
}

.login-text p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.login-form {
  display: flex;
  min-width: 480px;
  max-width: 560px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  color: #475467;
}

.login-logo {
  margin-top: 30px;
  width: 250px;
}

.login-logo img {
  height: auto;
}

.login form {
  background: rgba(255, 255, 255, 0.2);
  margin: 30px auto;
  position: relative;
}

.login form:after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 100px;
  left: 20%;
  background: linear-gradient(left, #111, #444, #b6b6b8, #444, #111);
  top: 0;
}

.login form:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 5px;
  border-radius: 50%;
  left: 34%;
  top: -7px;
  box-shadow: 0 0 6px 4px #fff;
}

.inset {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap:15px;
}

.login form h1 {
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px; /* 122.222% */
  letter-spacing: -0.72px;
}

/*.login form h1:after {
  content: "";
  display: block;
  width: 250px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 50px;
  pointer-events: none;
  transform: rotate(70deg);
  -webkit-transform: rotate(70deg);
  background: linear-gradient(
    50deg,
    rgba(255, 255, 255, 0.15),
    rgba(0, 0, 0, 0)
  );
  background-image: -webkit-linear-gradient(
    50deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0)
  ); /* For Safari
} */

.login label {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 2px;
}

.login input[type="text"],
.login input[type="password"] {
  width: 100%;
  padding: 8px 5px;
  border-radius: 8px;
  border: 2px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
}

.login input[type="text"]:focus-visible,
.login input[type="password"]:focus-visible,
.login input[type="text"]:focus,
.login input[type="password"]:focus {
  border: 2px solid #cf0d0d;
  outline: none;
}

.login label[for="remember"] {
  color: white;
  display: inline-block;
  padding-bottom: 0;
  padding-top: 5px;
}

.login input[type="checkbox"] {
  display: inline-block;
  vertical-align: top;
}

.p-container {
  margin-top: 30px;
}

.p-container:after {
  clear: both;
  display: table;
  content: "";
}

.p-container span {
  display: block;
  float: left;
  color: #0d93ff;
  padding-top: 8px;
}

.login input[type="submit"] {
  display: flex;
  padding: 5px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--cellcom-color, #cf0d0d);
  background: var(--cellcom-color, #cf0d0d);
  color: #fff;
  width: 100%;
}

.login input[type="submit"]:hover {
  border: 1px solid var(--cellcom-color, #bb0c0c);
  background: var(--cellcom-color, #bb0c0c);
}

/*.login input[type="text"]:hover,
.login input[type="password"]:hover,
.login label:hover ~ input[type="text"],
.login label:hover ~ input[type="password"] {
  background: #27292c;
}*/

div.footer {
  position: fixed;
  bottom: 0;
  top: auto;
  width: 100%;
  padding: 15px 0;
}

.footer-text {
  text-align: left;
}
.footer-text p {
  color: #475467;
}
