body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
}

.navbar {
  width: auto;
  background-color: rgba(255, 255, 255, 0.3);
  border-bottom: rgba(213, 213, 213, 1) 1px solid;
  color: black;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 0 40px;
  z-index: 1000;
}

.cmnButton {
  min-width: 100px;
  font-size: medium;
  border-radius: 40px;
  padding: 13px 18px;
  text-align: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

#login {
  border: gray 1px solid;
  background-color: #48aaff35;
}
#register {
  border: #103250 1px solid;
  background-color: #14426b;
  color: white;
}

.logregCont {
  position: absolute;
  width: 100%;
  height: max-content;
  margin-top: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#logForm {
  display: none;
}

#regForm {
  display: none;
}

.formWrapper {
  position: relative;
  max-width: 430px;
  width: 100%;
  background: #fff;
  padding: 34px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 11;
}

.formWrapper h2 {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #333;
}

.formWrapper h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 28px;
  border-radius: 12px;
  background: #14426b;
}

.formWrapper form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.formWrapper form .input-box {
  height: 52px;
}

form .input-box input {
  height: 100%;
  width: 23em;
  outline: none;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  border: 1.5px solid #c7bebe;
  border-bottom-width: 2.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.input-box input:focus,
.input-box input:valid {
  border-color: #14426b;
}

form h3 {
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}
.input-box.button input {
  color: #fff;
  letter-spacing: 1px;
  border: none;
  background: #14426b;
  cursor: pointer;
}
.input-box.button input:hover {
  background: #103250;
}
form .text h3 {
  color: #333;
  width: 100%;
  text-align: center;
}
form .text h3 a {
  color: #14426b;
  text-decoration: none;
}
form .text h3 a:hover {
  text-decoration: underline;
}

.heroBackground {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  filter: blur(50px);
  -webkit-filter: blur(50px);
}

.backgroundObj {
  position: absolute;
  width: 18em;
  height: 18em;
  opacity: 0.5;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.heroBackground :nth-child(1) {
  bottom: 0%;
  right: 10%;
  width: 28em;
  height: 28em;
  background-color: #4f46e5;
}

.heroBackground :nth-child(2) {
  top: 50%;
  left: 15%;
  background-color: #2bc748;
}

.heroBackground :nth-child(3) {
  top: 25%;
  left: 5%;
  background-color: #c71d1d;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  padding: 3em 10em;
}

.textWrapper {
  padding-top: 6rem;
  width: 36rem;
  height: max-content;
  display: grid;
  gap: 2.5rem;
  z-index: 1;
}

.text1 {
  text-align: left;
  width: 100%;
  overflow-wrap: break-word;
  font-size: 4em;
  font-weight: 700;
  color: rgb(0, 0, 0);
  text-align: left;
  line-height: 1.4;
}

.text2 {
  width: 100%;
  overflow-wrap: break-word;
  font-size: 1.2em;
  font-weight: 500;
  color: rgb(72, 72, 72);
  text-align: left;
}

.bookBait {
  width: fit-content;
  height: fit-content;
  display: flex;
  justify-content: center;
  font-size: medium;
  border: #103250 1px solid;
  background-color: #14426b;
  color: white;
  padding: 16px 20px;
}

.background {
  background: url('../img/heroImg.jpg');
  background-position: start;
  width: 40rem;
  height: 33rem;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border: #bebebe 5px solid;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.heroBg {
  width: 100%;
  height: 100%;
  display: none;
}
