@import url("./responsive.css");

:root {
  --heading: 36px;
}

main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.module1 {
  display: none;
}

.view1 {
  width: 100%;
  padding: 48px 5%;
  margin-top: 60px;
  display: flex;
  gap: 12px;
}

.view1-left {
  width: 60%;
}

.view1-left-top {
  width: 100%;
}

.view1-left-top h1 {
  font-size: var(--heading);
  font-weight: 600;
}

.view1-left-top .blog-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  margin-top: 20px;
}

.view1-left-top .blog-info .posted-info {
  font-weight: 600;
}

.view1-left-top .blog-info .read-time {
  font-weight: 600;
}

.view1-left-top img {
  width: 100%;
  margin-top: 16px;
  border-radius: 16px;
}

.view1-left-top p {
  color: var(--dark-gray);
  font-weight: 600;
  margin-top: 20px;
}

.view1-left-body {
  margin-top: 24px;
}

.view1-right {
  width: 40%;
}

.view1-right-inner {
  width: 100%;
  position: sticky;
  top: 80px;
}

.view1-form-container {
  width: 100%;
  height: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border: 1.5px solid #ececec;
  border-radius: 12px;
  /* border-bottom: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
  display: flex;
  overflow: hidden;
  z-index: 9;
}
.view1-form1,
.view1-form2 {
  width: 100%;
  flex-shrink: 0;
  padding: 24px;
}
.form-seprator {
  border-top: 1px dashed #e6e6e6;
  margin-bottom: 16px;
}
.view1-form1 h5,
.view1-form2 h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.view1-form1 p,
.view1-form2 p {
  color: var(--dark-gray);
  font-size: 14px;
  margin-bottom: 16px;
}
.view1-form1 button,
.view1-form2 button {
  width: 100%;
  background-color: #10528b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}
.form-resendOtpBtn {
  background-color: transparent !important;
  border: 1px solid #10528b !important;
  color: #10528b !important;
}
.form-formGroup {
  margin-bottom: 16px;
}
.form-btnGroup {
  display: flex;
  gap: 12px;
}
.form-formGroup label {
  display: block;
  color: #10528b;
  font-size: 14px;
  font-weight: 600 !important;
  margin-bottom: 6px;
}
.form-formGroup label span {
  color: red;
}
.form-formGroup input {
  border-radius: 8px;
  padding: 10px;
  display: block;
  width: 100%;
  border: 1px solid #e6e6ee;
}
.form-formGroup input::placeholder {
  font-size: 14px;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-input-error {
  color: red;
  font-size: 12px;
  display: none;
}

.content_wrapper {
  margin-top: 16px;
}
.content_wrapper h2 {
  font-size: 24px;
  font-weight: var(--font-semibold);
  color: #10528b;
}
.content_wrapper h4 {
  margin-top: 14px;
  font-weight: var(--font-semibold);
}
.content_wrapper ul {
  margin: 24px 0 0 16px;
}
.content_wrapper ul li {
  font-size: 14px;
  color: #595959;
  line-height: 20px;
  text-decoration: none;
}
.content_wrapper ul li strong {
  font-weight: 700;
}
.content_wrapper p {
  font-size: var(--subheading-small);
  color: var(--dark-gray);
  line-height: 20px;
  margin-top: 21px;
}
.content_wrapper p span {
  color: #10528b;
  font-weight: 700;
}
a {
  color: #10528b;
}
.content_wrapper img {
  max-width: 700px;
  width: 100%;
}
details {
  max-width: 700px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
summary {
  cursor: pointer;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-size: 18px;
  transition: transform 0.3s ease;
}
details[open] summary::after {
  content: "-";
}
details p {
  padding: 0 20px 15px 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 0 !important;
}
.module3 {
  display: none;
}

@media screen and (max-width: 996px) {
  :root {
    --heading: 32px;
  }
  .view1 {
    flex-direction: column;
  }

  .view1-left,
  .view1-right {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --heading: 28px;
  }
}
