* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
body {
  font-family: "Poppins", sans-serif;
}
.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(198, 198, 198, 0.715);
}
.close-btn {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
}
.close-btn img {
  width: 1.5rem;
  opacity: 0.5;
}
.reg-container {
  position: absolute;
  width: 100%;
  max-width: 800px;
  height: 100%;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(251, 247, 220);

  border-radius: 10px;
  box-shadow: rgba(119, 119, 119, 0.96) 0px 3px 8px;
}
.register-section {
  position: relative;
  padding: 20px;
  width: 90%;
  text-align: center;

  height: 100%;
}
.banner-section {
  height: 100%;
  width: 100%;
  position: relative;
}
.register-section {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}
.register-section h2 {
  margin-top: 4rem;
  color: #3a3a3a;
}
/* Error msg  */
.error-msg {
  height: 50px;
}
form {
  margin-top: 1rem;
}
form input {
  margin-top: 0.5rem;
}
input label {
  font-weight: 600;
}
.reg-input {
  border: none;
  outline: none;
}
.btn {
  margin-top: 1rem;
  width: 100%;
  height: 3rem;
  font-size: 1.5rem !important;
  padding: auto !important;
}
button {
  font-size: 2rem;
}
.login-btn p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgb(51, 51, 51);
}
.login-btn p a {
  text-decoration: none;
}

.shapes {
  filter: blur(3px);
}
.purple {
  overflow: hidden;
  position: absolute;
  bottom: -37rem;
  left: 0;
  width: 10rem;
}
.green {
  position: absolute;
  top: 0;
  width: 8rem;
  right: 0;
}

.banner-content {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: relative;
  text-align: center;
}
.logo img {
  margin-top: 1rem;
  width: 3rem;
}
.header h2 {
  font-size: 1.9rem;
}
.header p {
  margin-top: -1rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.quote {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 400px;
  margin-top: 5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.quote p {
  font-size: 1.5rem;
}
.quote .auther {
  text-align: right;
  padding-right: 25px;
}
#replace-btn {
  border: none;
  text-decoration: underline;
  background-color: #fff;
  color: blue;
}

#logsec {
  display: none;
}
#regsec {
  display: block;
}

@media (max-width: 990px) {
  .quote p {
    font-size: 1.2rem;
    padding: 10px;
  }
  .quote .auther {
    padding-right: 5rem;
  }
}

@media (max-width: 768px) {
  .quote {
    width: 300px;
  }
  .green {
    width: 5rem;
  }
  .purple {
    width: 8rem;
  }
}
@media (max-width: 600px) {
  .reg-container {
    flex-direction: column;
  }
  .banner-section {
    display: none;
  }
  .register-section h2 {
    margin-top: 2rem;
  }
}
