body {
  /* background: url("../static/images/bg-image.png") center/cover no-repeat; */
  /* font-family: monospace; */
  /* overflow-x: hidden;
  margin: 0;
  padding: 0; */
}

/* .container-full {
  margin: 0;
  padding: 0;
} */


.top-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* background-color: black; */
  padding: 10px 30px;
  box-shadow: 2px black;
}

.connect-button {
  margin-left: 50px;
  background-color: #2EA577;
  border-radius: 5px;
  box-shadow: #68D59D 0px 4px 0px 0px;
  padding: 10px 10px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  width: 150px;
  height: 40px;
  color: #ffff;
  border: none;
  font-size: 15px;
  transition: all .3s ease-in-out;
  z-index: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.connect-button::before {
  content: "";
  background-color: #4ab38a;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}

.connect-button:hover::before {
  width: 100%;
}

.logo-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.logo-center img {
  width: 10%;
}

.header {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  margin-left: 20px;
  margin-top: 10px;
}

.logo-wrap img {
  width: 15%;
  padding: 10px;
}

.content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: -30px; */
}

.para-section h1 {
  font-size: 40px;
  text-align: center;
  /* margin-top: -20px; */
}

.para-section p {
  display: block;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  word-spacing: 5px;
}

.main-container {
  display: flex;
  width: calc(100% - 20%);
  margin: 0 10%;
  background-color: #f2f2f2;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.left-section {
  position: relative;
  display: flex;
  width: 60%;
  height: 300px;
  /* Adjust as needed */
  background-color: #f8f8f8;
  border-radius: 5px;
  padding: 0;
}

.left-section textarea {
  width: 100%;
  height: 85%;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  text-align: left;
  resize: none;
  font-size: 20px;
  line-height: 40px;
  overflow-y: auto;
}

.left-section textarea:focus {
  outline: none;
}

.right-section {
  display: flex;
  flex-direction: column;
  width: 40%;
  height: 300px;
  /* Adjust as needed */
  background-color: #f8f8f8;
  border-radius: 5px;
  padding: 10px;
  margin-left: 10px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  overflow-y: auto;
}

.right-section div {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  text-align: left;
  resize: none;
  font-size: 20px;
}

.section-heading {
  font-weight: bold;
  margin-bottom: 10px;
}

/* left text-area button */
/* #submit-button {
  padding: 10px 20px;
  background-color: black;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  bottom: 10px;
  right: 10px;
} */



.error-text {
  color: red;
}

footer {
  position: fixed;
  bottom: 0px;
  font-size: 13px;
  /* margin: 0rem 2rem;
  padding: 5px 5px; */
  padding: 5px;
}


footer .copyright {
  font-weight: 600;
  text-align: end;
  margin-top: 1rem;
}

footer .policy {
  text-align: justify;
  width: 70%;
  margin-top: 3rem;
  line-height: 1.5rem;
  font-size: 15px;
}

#openFooterPopup {
  border: none;
  background-color: transparent;
}

#openFooterPopup :hover {
  text-decoration: underline;
}

/* popup form styles */
/* Popup container styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow-y: auto;
}

/* Popup content styles */
.popup-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 850px;
}

.close {
  position: relative;
  top: -10px;
  left: 820px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  font-size: 30px;
}

.close:hover {
  color: #000;
}

/* Form styles (you can customize these further) */
#contactForm {
  display: grid;
  gap: 15px;
  margin-left: 50px;
  margin-top: 20px;
}

.flex {
  display: flex;
  width: 93%;
  gap: 30px;
}

#input-text,
input[type="email"] {
  width: 90%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

#input-text,
input[type="email"]:focus {
  outline: none;
}


label {
  font-size: 12px;
}

select {
  height: 40px;
}

option {
  border-radius: 0px;
}

textarea {
  resize: none;
  height: 100px;
  overflow-y: auto;
  width: 91%;
  padding: 5px;
  border-radius: 5px;
}

textarea:focus {
  outline: none;
}

.form-submit-button {
  background-color: #000;
  color: #fff;
  padding: 10px 11px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 90%;
}

.form-submit-button:hover {
  background-color: rgb(37, 36, 36);
}

.container {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container a {
  text-decoration: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.container:hover input~.checkmark {
  background-color: #ccc;
}

.container input:checked~.checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.scribble {
  margin-top: -12px;
}