* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mainContainer {
  width: 100%;
  height: 100vh;
  background-image: url("assets/bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 17%;
  padding-top: 8%;
  font-family:
    "Segoe UI",
    "Segoe UI Web (West European)",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
.loginCard {
  /* border: 2px solid black; */
  width: 440px;
  height: 419px;
  margin-bottom: 3%;
  background-color: #292929;
  box-shadow: 0px 0px 20px 0px #1e202c;
  border-radius: 10px;
}

.logoContent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 8%;
  color: #fff;
}
img {
  width: 6%;
}
.logoHeading {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.loginCont {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 8%;
  gap: 10px;
  color: #fff;
}
#loginheading {
  font-size: 24px;
  font-weight: 600;
}

.loginInputBox {
  width: 80%;
  margin: auto;
  margin-top: 8%;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
input {
  width: 100%;
  padding: 12px 5px 10px 12px;
  border: none;
  outline: none;
  border: 0.5px solid white;
  border-radius: 5px;
  background-color: transparent;
}
a {
  text-decoration: none;
  font-weight: 600;
  color: #6495c8;
  font-size: 14px;
}

.submitbtn {
  width: 80%;
  margin: auto;
  margin-top: 7%;
}
button {
  width: 100%;
  border: none;
  outline: none;
  /* border: 2px solid black; */
  border-radius: 5px;
  padding: 10px;
  background-color: #115ea2;
  font-weight: bold;
  color: #def4ff;
  font-size: 14px;
  cursor: pointer;
}
button:hover {
  background-color: #146ab6;
}

.loginAccount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 7%;
}
p {
  font-size: 14px;
  color: #fff;
}

.loginContent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  padding-bottom: 2%;
}
.cont {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
}
.cont > p {
  font-size: 12px;
}
.cont2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cont2 > p {
  font-size: 10px;
  text-align: center;
}
.cont2 > a {
  font-size: 10px;
  text-decoration: none;
  color: #5077a1;
  font-weight: bold;
}
