@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

*,
html,
body {
  margin: 0;
  padding: 0;
}


.cl-logoBox {
  height: 80px;
}

.infoWrapper {
  display: flex;
  align-items: end;
  gap: 5px;
  position: fixed;
  left: 20px;
  bottom: 5px;
  z-index: 1000;
}

#dsgvoWrapper {
  display: none;
  flex-direction: column;
  gap: 5px;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.container {
  width: 60vw;
  height: 70vh;
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: "login";
  border-radius: 20px;
  background: rgb(195, 195, 195);
  overflow: hidden;
}

.design {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.design img {
  width: 100%;
  height: 60%;
  max-height: 60%;
  object-fit: scale-down;
}

.design button {
  margin-top: -30px;
}

.rotate-45 {
  transform: rotate(-45deg);
}

.design .pill-1 {
  bottom: 0;
  left: -40px;
  position: absolute;
  width: 80px;
  height: 200px;
  background: linear-gradient(#434343, #484848, #222);
  border-radius: 40px;
}

.design .pill-2 {
  top: -100px;
  left: -80px;
  position: absolute;
  height: 450px;
  width: 220px;
  background: linear-gradient(#434343, #484848, #222);
  border-radius: 200px;
  border: 30px solid #8d8d8d;
}

.design .pill-3 {
  top: -100px;
  left: 160px;
  position: absolute;
  height: 200px;
  width: 100px;
  background: linear-gradient(#434343, #484848, #222);
  border-radius: 70px;
}

.design .pill-4 {
  bottom: -180px;
  left: 220px;
  position: absolute;
  height: 300px;
  width: 120px;
  background: linear-gradient(#848484, #525252);
  border-radius: 70px;
}

.login {
  grid-area: login;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(173, 173, 173, 0.408);
}

.login img {
  height: 80px;
  width: 80px;
}

.login h3.title {
  margin: 15px 0;
}

.text-input {
  background: #e6e6e6;
  height: 40px;
  display: flex;
  width: 60%;
  align-items: center;
  border-radius: 10px;
  padding: 0 15px;
  margin: 5px 0;
}

.text-input input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  margin-left: 10px;
}

.text-input i {
  color: #686868;
}

::placeholder {
  color: #9a9a9a;
}

.clerk-btn {
  width: 40%;
  padding: 10px;
  color: white;
  background: transparent;
  border: 2px solid --var(main-color);
  border-radius: 20px;
  cursor: pointer;
}

.clerk-btn:hover {
  transform: scale(1.05);
  transition-duration: 0.3s;
}

.cl-internal-xwfgjc{
	display: none;
}

.cl-internal-4x6jej{
	display: none;
}


a {
  font-size: 12px;
  color: #9a9a9a;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

a.forgot {
  margin-top: 15px;
}

.create {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 30px;
}

.create i {
  color: #9a9a9a;
  margin-left: 10px;
}

@media (min-width: 768px) {
  .container {
    grid-template-areas: "design login";
  }

  .design {
    display: block;
  }
}
.cl-internal-vgl83l {
  display: none !important;
}

