@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  /* background-color: #161616; */
  color: #fafafa;
}
.body-bg {
  background-color: #161616;
}
.mob {
  display: none;
}
.desk {
  display: block;
}
.spacer {
  width: 100%;
  display: block;
  height: 100px;
}
.clear {
  clear: both;
  padding: 0;
  margin: 0;
}
.container {
  width: 1000px;
  margin: 0 auto;
}
.full {
  display: block;
  padding: 0 20px;
  margin: 40px;
  box-sizing: border-box;
}
.fm-1 {
  float: left;
  width: 98%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-2 {
  float: left;
  width: 48%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-3 {
  float: left;
  width: 31.3333333333%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-4 {
  float: left;
  width: 23%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-5 {
  float: left;
  width: 28%;
  margin-left: 1%;
  margin-right: 1%;
}
.fm-6 {
  float: left;
  width: 68%;
  margin-left: 1%;
  margin-right: 1%;
}
.half {
  float: left;
  width: 50%;
  margin: 0;
}
.third {
  float: left;
  width: 33.3333333333%;
  margin: 0;
}

header {
  position: fixed;
  top: 20px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 1000;
}
.logo {
  height: 40px;
}
nav {
  display: flex;
  gap: 20px;
  color: #fafafa;
  padding: 10px 20px;
}
nav a {
  text-decoration: none;
  color: #fafafa;
  font-weight: 500;
  transition: all 0.3s ease;
}
nav a:hover {
  color: #d70015;
}
.menu-button {
  position: fixed;
  top: 25px;
  right: 20px;
  color: white;
  border: none;
  background: transparent;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 50;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.overlay a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  margin: 5px 0;
  transition: color 0.3s;
}
.overlay a:hover {
  color: gray;
}
.cta-button {
  background: #d70015;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background: #ff0000;
}

.hero {
  margin: 20px 40px 40px 40px;
  padding: 60px;
  background: url("images/hero.png") no-repeat center center/cover;
  border-radius: 16px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
.hero-content {
  width: 40%;
}

.three-box {
  display: grid;
  margin: 40px 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.single-box {
  position: relative;
  padding-top: 70%;
  border-radius: 16px;
  overflow: hidden;
}
.single-box-signup {
  padding-top: 50%;
}
.clients {
  position: relative;
  padding-top: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #1d1d1d;
  padding: 130px;
}
.content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: left;
}
.simplify {
  position: relative;
  background-image:
    url("images/simplify.png"),
    linear-gradient(to right, rgba(29, 29, 29, 100), rgba(29, 29, 29, 100));
  z-index: 1;
}
.simplify::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    url("images/simplify.png"), linear-gradient(-45deg, #477888, #d70015);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.simplify:hover::before {
  opacity: 1;
}
.secure {
  position: relative;
  background-image:
    url("images/secure.png"),
    linear-gradient(to right, rgba(29, 29, 29, 100), rgba(29, 29, 29, 100));
  z-index: 1;
  background-position: center center;
}
.secure::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    url("images/secure.png"), linear-gradient(-45deg, #477888, #d70015);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
  background-position: center center;
  background-repeat: no-repeat;
}
.secure:hover::before {
  opacity: 1;
}
.streamline {
  position: relative;
  background-image:
    url("images/streamline.png"),
    linear-gradient(to right, rgba(29, 29, 29, 100), rgba(29, 29, 29, 100));
  z-index: 1;
}
.streamline::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    url("images/streamline.png"), linear-gradient(-45deg, #477888, #d70015);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.streamline:hover::before {
  opacity: 1;
}

.cta {
  background-image: url("images/ctabg.png");
  background-size: cover;
  background-position: center center;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 30px;
  border-radius: 16px;
  background-color: #1d1d1d;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 40px;
}
.grid-item {
  aspect-ratio: 1 / 1;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: start;
}
.icon {
  height: 48px;
  margin-bottom: 20px;
}
.grid-item ul {
  margin-left: 20px;
}
.grid-item ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.scroll-container {
  height: 560px;
  width: 100%;
  overflow-x: scroll;
  display: flex;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-box {
  flex: 0 0 450px;
  height: 300px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: end;
  justify-content: start;
}
.scroll-box-bg {
  position: relative;
  background-image: linear-gradient(
    to right,
    rgba(29, 29, 29, 100),
    rgba(29, 29, 29, 100)
  );
  z-index: 1;
}
.scroll-box-bg::before {
  position: absolute;
  border-radius: 16px;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-45deg, #477888, #000000);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.scroll-box-bg:hover::before {
  opacity: 1;
}

.ne-logo {
  max-height: 50px;
  height: 100%;
  margin-bottom: 40px;
}

.list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.done {
  background: url("images/done.svg");
  background-position: 0 3px;
  background-repeat: no-repeat;
  padding-left: 25px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.four-box {
  display: grid;
  margin: 40px 40px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.single-box {
  background-color: #1d1d1d;
}

.cimage {
  height: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.quotes-rotator {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  height: 250px;
  font-size: 1.2em;
}
.mark {
  margin-bottom: 20px;
}
.green {
  color: #477888;
}

.accordion {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 10px;
}
.accordion-title {
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #1d1d1d;
  transition: transform 0.3s;
  font-size: 22px;
  border-radius: 16px;
}
.accordion-title.active {
  border-radius: 16px 16px 0 0;
  background-color: #000000;
}
.accordion-title span {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.accordion-title.active span {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding: 20px;
  border-radius: 0 0 16px 16px;
  background: #000000;
  animation: fadeIn 0.3s ease forwards;
}

.outer-div {
  width: calc(100% - 80px);
  margin: 40px;
  border-radius: 16px;
  padding: 80px 60px;
  background-image: url("images/cta-big.png");
  background-size: cover;
  display: flex;
  justify-content: space-between;
}
.inner-div-70 {
  width: 70%;
  padding: 20px;
}
.inner-div-30 {
  width: 30%;
  padding: 20px;
}

.three-box {
  display: grid;
  margin: 40px 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.p-style {
  line-height: 1.5;
  margin-bottom: 10px;
}
h1 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
h2 {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}
h3 {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
}
.aligncenter {
  text-align: center;
}

.footer-link {
  cursor: pointer;
  text-decoration: underline;
  color: #ffffff;
}

.footer-link:hover {
  opacity: 0.8;
}

.in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 2s ease-out,
    transform 2s ease-out;
}
.in.visible {
  opacity: 1;
  transform: translateY(0);
}

.choose {
  border: 2px solid #1d1d1d !important;
  cursor: pointer;
  transition: all 0.3s linear;
}
.choose:hover {
  border: 2px solid #ff0000 !important;
  transform: translateY(-5px);
}
.simage {
  height: 80px;
  position: absolute;
  top: 20px;
  left: 20px;
}
ul {
  margin-left: 20px;
}
ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* tablet */
@media screen and (max-width: 999px) {
  .mob {
    display: block;
  }
  .desk {
    display: none;
  }
  nav {
    display: none;
  }
  .menu-button {
    right: 60px;
  }
  .hero {
    margin: 100px 20px 20px 20px;
    padding: 20px;
    background: #000000;
    min-height: 700px;
    height: 100%;
  }
  .hero-content {
    width: 100%;
  }

  .three-box {
    display: grid;
    margin: 40px 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .content {
    background-color: #1d1d1d;
  }
  .grid-container {
    grid-template-columns: 1fr;
    margin: 20px 20px;
  }
  .grid-item:nth-child(2) {
    order: 1;
    aspect-ratio: 1 / 0.6;
  }
  .grid-item:nth-child(4) {
    order: 2;
  }
  .grid-item:nth-child(3) {
    order: 3;
    aspect-ratio: 1 / 0.6;
  }
  .grid-item:nth-child(5) {
    order: 4;
  }
  .grid-item:nth-child(6) {
    order: 5;
    aspect-ratio: 1 / 0.6;
  }
  .grid-item:nth-child(8) {
    order: 6;
  }
  .grid-item:nth-child(7) {
    order: 7;
    aspect-ratio: 1 / 0.6;
  }
  .fm-5 {
    width: 100%;
    margin: 0;
  }
  .fm-6 {
    width: 100%;
    margin: 0;
  }
  .container {
    width: 95%;
  }
  .four-box {
    display: grid;
    margin: 40px 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .quotes-rotator {
    padding: 40px;
  }
  .accordion-item {
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 40px;
  }
}

/* fluid */
@media screen and (max-width: 1024px) {
  .mob {
    display: block;
  }
  .desk {
    display: none;
  }
  nav {
    display: none;
  }
  .menu-button {
    right: 80px;
  }
  .hero {
    margin: 100px 20px 20px 20px;
    padding: 40px;
    background: #000000;
    min-height: 700px;
    height: 100%;
  }
  .hero-content {
    width: 100%;
  }
  .three-box {
    display: grid;
    margin: 40px 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .content {
    background-color: #1d1d1d;
  }
  .four-box {
    display: grid;
    margin: 40px 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .quotes-rotator {
    padding: 40px;
  }
  .accordion-item {
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 40px;
  }
  .container {
    width: 90%;
  }
}

/* mobile */
@media screen and (max-width: 479px) {
  .mob {
    display: block;
  }
  .desk {
    display: none;
  }
  .container {
    width: 95%;
  }
  .spacer {
    height: 60px;
  }
  .fm-1 {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
  .fm-2 {
    width: 98%;
  }
  .fm-3 {
    width: 98%;
  }
  .fm-3 {
    width: 98%;
  }
  .fm-4 {
    width: 98%;
  }
  .fm-5 {
    width: 100%;
    margin: 0;
  }
  .fm-6 {
    width: 100%;
    margin: 0;
  }
  .grid-container {
    grid-template-columns: 1fr;
    margin: 20px 20px;
  }
  .grid-item:nth-child(2) {
    order: 1;
  }
  .grid-item:nth-child(4) {
    order: 2;
  }
  .grid-item:nth-child(3) {
    order: 3;
    aspect-ratio: 1 / 1.3;
  }
  .grid-item:nth-child(5) {
    order: 4;
  }
  .grid-item:nth-child(6) {
    order: 5;
  }
  .grid-item:nth-child(8) {
    order: 6;
  }
  .grid-item:nth-child(7) {
    order: 7;
    aspect-ratio: 1 / 1.3;
  }
  header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
  }
  nav {
    display: none;
  }
  .hero {
    margin: 100px 20px 20px 20px;
    padding: 20px;
    background: #000000;
    min-height: 700px;
    height: 100%;
  }
  .hero-content {
    width: 100%;
  }
  .full {
    margin: 20px;
    padding: 0;
  }
  .three-box {
    display: grid;
    margin: 20px 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .grid-item {
    height: auto;
    padding: 0px;
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: start;
  }
  .scroll-container {
    height: 340px;
    padding: 20px;
    box-sizing: border-box;
    scrollbar-width: none;
  }
  .scroll-box {
    flex: 0 0 300px;
    height: 300px;
  }
  .four-box {
    margin: 20px 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .three-box {
    margin: 20px 20px;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  .cta {
    padding: 40px;
    text-align: center;
  }
  .quotes-rotator {
    padding: 20px;
    margin-bottom: 40px;
  }
  .outer-div {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 20px 20px;
    display: block;
  }
  .inner-div-70 {
    width: 100%;
  }
  .inner-div-30 {
    width: 100%;
  }
  .content {
    background-color: #1d1d1d;
  }
  .accordion-item {
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .choose {
    position: relative;
    display: block !important;
    border-radius: 16px;
    overflow: hidden;
    padding-top: calc(100% + 40px) !important;
  }
  .simage {
    height: 60px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
}

/* center whole block */
.auth-wrap {
  width: 390px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

/* title area */
.auth-title {
  text-align: center;
  margin-bottom: 28px;
}

.auth-title h1 {
  margin: 0 0 10px 0;
}

.auth-title p {
  margin: 0;
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.6;
}

/* form layout */
.login-form {
  width: 100%;
  margin-top: 30px;
}

/* spacing between inputs */
.form-group {
  margin-bottom: 22px;
}

/* label */
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #9ca3af;
  font-size: 14px;
}

/* red star */
.required {
  color: #ff0000;
  margin-left: 3px;
}

/* inputs */
.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 0.5px solid #374151;
  background: transparent;
  color: #fafafa;
  font-size: 14px;
  outline: none;
}

.login-form input::placeholder {
  color: #6b7280;
}

.login-form input:focus {
  border-color: #6b7280;
}

/* remember + forgot row */
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 22px;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 1px solid #6b7280;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
}

/* checked state */
.remember-me input[type="checkbox"]:checked {
  background: #d70015;
  border-color: #d70015;
}

/* check mark */
.remember-me input[type="checkbox"]:checked::after {
  content: "✓";
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* align checkbox + text in one line */
.remember-me {
  display: inline-flex;
  align-items: center; /* vertical center */
  gap: 8px; /* space between box and text */
  color: #9ca3af; /* gray text */
  font-weight: 500;
  cursor: pointer;
}

/* remove default browser spacing */
.remember-me input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
}

/* forgot password */
.forgot-password {
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
}

.forgot-password:hover {
  color: #d70015;
}

/* button */
.login-btn {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  font-weight: 700;
}

/* signup text */
.signup-text {
  margin-top: 16px;
  text-align: center;
  color: #9ca3af;
}

.signup-text a {
  color: #ff0000;
  font-weight: 600;
  text-decoration: none;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
  border-color: #08a843; /* green-600 */
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25);
  outline: none;
}

/* mobile */
@media (max-width: 479px) {
  .auth-wrap {
    width: calc(100% - 40px);
  }
}

/* =========================
   FORGOT PASSWORD PAGE ONLY
   Matches first screenshot
   ========================= */

/* make the page area wide enough so heading doesn't wrap */
.forgot-page {
  max-width: 540px; /* allow the title to fit */
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
}

/* title: single line, big */
.forgot-page .forgot-title {
  font-size: 62px;
  font-weight: 550;
  line-height: 1.05;
  margin: 10px 0 10px;
  text-align: center;
  white-space: nowrap; /* force one line like first ss */
}

/* subtitle: white + same size feel */
.forgot-page .login-sub {
  font-size: 24px !important;
  color: #fafafa;
  margin: 0 0 26px;
  text-align: center;
}

/* keep the form block centered + controlled width like first ss */
.forgot-page .login-form {
  max-width: 560px; /* form width similar to first ss */
  margin: 0 auto;
  margin-top: 0; /* remove extra push down */
}

/* spacing */
.forgot-page .form-group {
  margin-bottom: 18px;
}

/* IMPORTANT: style email input (you were missing this) */
.forgot-page input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 0.5px solid #374151;
  background: transparent;
  color: #fafafa;
  font-size: 14px;
  outline: none;
}

/* recaptcha centered */
.forgot-page .g-recaptcha {
  display: flex;
  justify-content: center;
}

.forgot-page .login-btn {
  width: 80%;
  height: 50px;
  border-radius: 8px;
  font-weight: 700;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto;
}

/* back link spacing */
.forgot-page .signup-text {
  margin-top: 18px;
  text-align: center;
  color: #fafafa;
}

.forgot-page .forgot-sub {
  text-align: center;
  font-size: 24px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.forgot-page .forgot-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fafafa;
}
/* smaller email field */
.forgot-page .forgot-field {
  width: 420px;         
  max-width: 80%;
  margin: 0 auto 18px;   
  text-align: left;

}

/* input fills container */
.forgot-page .forgot-field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 0.5px solid #374151;
  background: transparent;
  color: #fafafa;
}
