/* COLORS

  MAIN: #00cc00
  PRIMARY: #33ff33
  LIGHTER:#99ff99
  DEEP: #009900
  DEEPER: #004d00

*/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #0e0e0e;
  color: #fff;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  background-color: #0b0b0b;
  padding: 20px 40px;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.error-msg {
  background: #ff6666;
}
.success-msg {
  background: #009900;
}
.error-msg, .success-msg {
  width: 100%;
  padding: 10px;
  border-left: 6px solid #c1c1c1;
  margin-bottom: 25px;
}
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove spinner in Chrome, Edge, Safari */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove spinner in Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.container .logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-size: 17px;
  /*font-weight: 600;*/
  transition: color 0.3s ease;
}

nav a.show-only-mobile {
  display: none;
}

nav a:hover {
  color: #33ff33;
}

/* Buttons */
.nav-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-buttons .login {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.nav-buttons .signup {
  /*background: #009900;*/
  background: linear-gradient(95deg, #33ff33, #009900);
  /*transition: 3s ease;*/
  color: #fff;
}

.nav-buttons .login:hover {
  background: #fff;
  color: #000;
}

.nav-buttons .signup:hover {
  /*background: #e600b8;*/
  /*background: #33ff33;*/
  background: linear-gradient(5deg, #009900, #33ff33);
}

/* Mobile menu toggle */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  min-height: 90vh;
  /*background: linear-gradient(90deg, #0e0e0e 50%, #1a1a1a 100%);*/
  background-image: url('../images/6468754fb18591684567375.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 0 50px;
}

.hero-content {
  max-width: 600px;
  margin-left: -600px;
}

.hero h1 {
  font-size: 70px;
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons a {
    text-decoration: none;
}

.hero-buttons .primary-btn {
  /*background-color: #009900;*/
  background: linear-gradient(5deg, #009900, #33ff33);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 15px;
}

.hero-buttons .secondary-btn {
  background: #fff;
  color: #000;
  /*border: 1px solid #fff;*/
  padding: 12px 28px;
  border-radius: 5px;
  cursor: pointer;
}

.hero-buttons button:hover {
  opacity: 0.85;
}





/* Header Banner */
.header-banner {
    background: #0c0c0c; /* Dark background */
    width: 100%;
    padding: 90px 0;
    text-align: center;
}

.header-banner h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a {
    color: #33cc33;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb a:hover {
    opacity: 0.7;
}


.breadcrumb span {
    color: #fff;
    font-size: 15px;
}

.breadcrumb p {
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}





/* ================= RESPONSIVE DESIGN ================= */

/* Tablets */
@media (max-width: 992px) {
  header {
    padding: 20px 25px;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }

  .hero {
    padding: 0 30px;
    text-align: center;
  }

  .hero-content {
    max-width: 500px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 38px;
  }
  nav a.show-only-mobile {
    display: block;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #0b0b0b;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }

  #menu-toggle:checked + .menu-icon + nav {
    display: flex;
  }

  .nav-buttons {
    display: none;
  }

  .hero {
    min-height: 50vh;
    padding: 80px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Small phones */
@media (max-width: 480px) {


  .hero-buttons button {
    padding: 10px 20px;
    font-size: 14px;
  }
}





/*============================

INDEX STATS BAR DESIGN

=============================*/


/* ================= STATS SECTION ================= */
.stats {
  background-color: #111;
  padding: 40px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 20px;
}

.stat-box {
  flex: 1 1 50px;
  margin: 15px;
}

.stat-box h2 {
  font-size: 26px;
  color: #99ff99;
  margin-bottom: 10px;
}

.stat-box p {
  color: #ccc;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .stat-box h2 {
    font-size: 22px;
  }
  .stat-box p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }

  .stat-box {
    margin: 20px 0;
  }

  .stat-box h2 {
    font-size: 24px;
  }
}



/*============================

INDEX PAGE

=============================*/
/* ================= ABOUT SECTION ================= */
.about {
  background-color: #0e0e0e;
  padding: 100px 50px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 450px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 51, 204, 0.2);
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  color: #99ff99;
  margin-bottom: 20px;
}

.about-text p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  margin-bottom: 25px;
}

.about-text ul li {
  color: #ccc;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.about-text ul li::before {
  content: "•";
  color: #ff33cc;
  position: absolute;
  left: 0;
  font-size: 18px;
}

.about-btn {
  /*background-color: #9b34eb;*/
  background: linear-gradient(5deg, #009900, #33ff33);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 28px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background-color: #7a26bd;
}

/* Responsive layout */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

 /* .about-text ul li::before {
    content: none;
}*/

  .about-text ul li {
    font-size: 15px;
    text-align: left;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 20px;
  }

  .about-text h2 {
    font-size: 24px;
  }
}




/*============================

INDEX STATS BAR DESIGN

=============================*/


/* ================= PLANS SECTION ================= */
.plans {
  background-color: #111;
  padding: 100px 50px;
  text-align: center;
}

.plans-container {
  max-width: 1200px;
  margin: auto;
}

.plans-container h2 {
  font-size: 32px;
  margin-bottom: 70px;
  color: #99ff99;
}

.plan-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.plan-card {
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 30px 20px;
  width: 320px;
  box-shadow: 0 0 20px rgba(0, 204, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 204, 0, 0.3);
}

.plan-header {
  border-bottom: 2px solid #ff33cc;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.plan-header h3 {
  font-size: 24px;
  color: #fff;
}

.plan-header p {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}

/* Colored borders by plan */
.plan-header.platinum {
  border-color: #d4af37;
}
.plan-header.diamond {
  border-color: #00bfff;
}
.plan-header.silver {
  border-color: #c0c0c0;
}

.plan-card ul {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
  padding-left: 10px;
}

.plan-card ul li {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 14px;
  position: relative;
  padding-left: 15px;
}

.plan-card ul li::before {
  content: "✔";
  /*color: #ff33cc;*/
  color: #99ff99;
  position: absolute;
  left: 0;
  font-size: 14px;
}

.plan-btn {
  /*background-color: #9b34eb;*/
  background: linear-gradient(5deg, #009900, #33ff33);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background-color: #7a26bd;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .plans-container h2 {
    font-size: 28px;
  }
  .plan-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .plan-cards {
    flex-direction: column;
    align-items: center;
  }
  .plan-card {
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .plans {
    padding: 60px 20px;
  }
  .plan-card {
    width: 100%;
  }
}





/*============================

INDEX STATS BAR DESIGN

=============================*/

/* General reset */
/** {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}*/

/* Features Section */
/* =============== TOOLS SECTION =============== */
.tools {
  background-color: #0a0a0a;
  text-align: center;
  padding: 100px 50px;
}

.tools h2 {
  font-size: 32px;
  line-height: 1.4;
  color: #99ff99;
  margin-bottom: 70px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.tool-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.tool-icon {
  /*background: linear-gradient(135deg, #d387ff, #ff33cc);*/
  background: linear-gradient(135deg, #009900, #33ff33);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tool-icon:hover {
  background: linear-gradient(95deg, #33ff33, #009900);
}

.tool-icon img {
  width: 26px;
  height: 26px;
  filter: invert(1);
}

.tool-text h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}
.tool-text h3:hover {
  color: #33ff33;
}

.tool-text p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tools {
    padding: 60px 25px;
  }
}


/* Steps Section */
.steps {
  background-color: #0f0f0f;
  padding: 90px 20px;
  text-align: center;
}

.steps h2 {
  color: #99ff99;
  font-size: 32px;
  margin-bottom: 60px;
}

.steps-grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;*/
  display: flex;
  justify-content: center;
  align-items: stretch;

}

.step-item {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 70px 35px;
  transition: transform 0.3s;
  max-width: 420px;
  margin: 0 15px;
}

.step-item h3 {
    font-size: 25px;
    font-weight: 600;
}
.step-item p {
    margin: 15px 0 0 0;
    font-size: 20px;
    line-height: 25px;
}

.step-item:hover {
  transform: translateY(-5px);
}

.circle {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 50%;
  /*background: linear-gradient(135deg, #a855f7, #d387ff);*/
  background: linear-gradient(135deg, #009900, #33ff33);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
}

/* FAQ Section */
.faq {
  background-color: #0a0a0a;
  padding: 120px 20px;
  text-align: center;
}

.faq h2 {
  color: #99ff99;
  font-size: 32px;
  margin-bottom: 70px;
}

.faq-item {
  max-width: 1200px;
  margin: 20px auto;
  text-align: left;
  border-radius: 5px;
  overflow: hidden;
  background: #1a1a1a;
}

.faq-question {
  width: 100%;
  background: none;
  color: #fff;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #222;
}

.arrow {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question, .faq-item.active .arrow {
    color: #33ff33;
}
.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #141414;
  color: #ccc;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}


/*============================

INDEX STATS BAR DESIGN

=============================*/


/* Section Titles */
/*.testimonials h2, .latest-news h2, .newsletter h2, .about-text h2, .plans-container h2, .tools h2, .steps h2, .faq h2 {
    text-align: center;
    color: #d86afc;
    margin-bottom: 40px;
}*/

/* Testimonials Section */

.testimonials h2 {
  text-align: center;
  color: #99ff99;
  margin-bottom: 70px;
  font-size: 32px;
}
.testimonials {
    padding: 120px 5%;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 450px;
    background: #1d1d1d;
    padding: 5px 20px 10px 20px;
    border-radius: 8px;
}

.quote-icon {
    font-size: 70px;
    color: #33ff33;
}
.testimonial-card p {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: -20px;
}
.testimonial-card h4 {
    font-weight: 800;
    font-size: 20px;
}

p.role {
    color: #b8b8b8;
    font-size: 14px;
    margin: 0;
}

/* Newsletter */
.newsletter {
    background: #0f0f0f;
    padding: 100px 10%;
    text-align: center;
}

.gradient-title {
    font-size: 40px;
    font-weight: 700;
    color: #99ff99;
}

.newsletter-text {
    max-width: 600px;
    margin: 15px auto 50px;
    font-size: 20px;
    color: #d5d5d5;
}

.newsletter-form {
    width: 100%;
    max-width: 900px;
    margin: auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 18px;
    background: transparent;
    border: 1px solid #2e2e2e;
    outline: none;
    color: #fff;
    border-radius: 6px 0 0 6px;
}
.newsletter-form input:focus {
    border: 0.5px solid #99ff99;
    transition: 0.5s ease;
}

.newsletter-form button {
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    /*background: linear-gradient(90deg, #7b61ff, #ff3fbf);*/
    background: linear-gradient(5deg, #009900, #33ff33);
    border-radius: 0 6px 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 3s ease;
}
.newsletter-form button:hover {
  background: linear-gradient(95deg, #33ff33, #009900);
}

.send-icon {
    font-size: 18px;
}

/* Footer */
footer {
    background: #070707;
    text-align: center;
    padding: 80px 5% 20px;
    color: #fff;
}

.footer-logo h4 {
    font-size: 16px;
    margin: 5px 0 0;
}

.footer-logo p {
    font-size: 11px;
    letter-spacing: 1px;
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.5s ease;
}
.icon-circle:hover {
  background: linear-gradient(5deg, #009900, #33ff33);
  border: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 10px 0 25px;
}

.footer-links li {
    color: #fff;
    cursor: pointer;
}

.footer-links li:hover {
  color: #33ff33;
}

.copyright {
    font-size: 13px;
    color: #b8b8b8;
    opacity: 0.8;
}



@media (max-width: 992px) {

  .steps-grid {
    display: block;
  }
  .step-item {
    margin: 15px 0;
  }
  .faq-question {
    font-size: 17px;
  }
  .faq-answer {
    font-size: 15px;
  }
  .quote-icon {
    font-size: 40px;
  }
  .testimonial-card p {
    font-size: 15px;
  }
  .testimonial-card h4 {
    font-size: 15px;
  }
  p.role{
    font-size: 12px;
  }
  .newsletter, .steps, .testimonials, .faq, .plans {
    padding: 70px 20px;
  }
  .newsletter-form .newsletter-btn {
    display: none;
  }
  .testimonials h2, .latest-news h2, .newsletter h2, .about-text h2, .plans-container h2, .tools h2, .steps h2, .faq h2 { font-size:25px; }

}




/*============================

SIGNUP PAGE

=============================*/


/* Register Page */
.register-container {
    display: flex;
    height: 100vh;
}

/* Left Section */
.register-left {
    width: 50%;
    background: #0c0c0c;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.register-top .logo {
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.logo span {
    font-size: 10px;
}

.login-link p {
    color: #cfcfcf;
    font-size: 14px;
}

.login-btn {
    /*background: linear-gradient(90deg, #7b61ff, #ff3fbf);*/
    background: linear-gradient(90deg, #33ff33, #009900);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.register-title {
    font-size: 35px;
    color: #fff;
    margin: 70px 0 35px;
}
.register-title.login {
  margin-top: 150px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.row {
    display: flex;
    gap: 15px;
}

.register-form input, .register-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #2e2e2e;
    background: transparent;
    color: #fff;
}

.register-form textarea {
    height: 150px;
    resize: vertical;
}

.policy {
    font-size: 14px;
    color: #ececec;
    display: flex;
    gap: 10px;
    align-items: center;
}

.policy input {
    width: 16px;
    height: 16px;
}

.register-btn {
    width: 100%;
    padding: 18px;
    border: none;
    background: linear-gradient(90deg, #33ff33, #009900);
    border-radius: 18px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.copy {
    color: #888;
    font-size: 12px;
    text-align: center;
    margin-top: auto;
}

/* Right Section */
.register-right.reg {
    background: url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
}
.register-right.logi {
  background: url('../images/bg2.jpg');
  background-size: cover;
  background-position: center;
}
.register-right {
    width: 50%;
}


.contact-page-container {
  width: 65%;
  margin: 50px auto;
  padding: 10px;
}
.contact-page-container form {
  margin-top: 30px;
}


.contact-info {
    /*background: #0c0c0c;*/
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 60px 0;
    flex-wrap: wrap;
}

.contact-card {
    /*background: #1a1a1a;*/
    background: #0c0c0c;
    width: 320px;
    text-align: center;
    padding: 35px 25px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.contact-card:hover {
    background: #222;
    transform: translateY(-5px);
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    background: linear-gradient(95deg, #33ff33, #009900);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card .icon i {
    font-size: 26px;
    color: #fff;
}

.contact-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-card a,
.contact-card span {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    display: inline-block;
    text-decoration: none;
}



/* ✅ Mobile Responsive */
@media (max-width: 900px) {
    .register-container {
        flex-direction: column;
        height: auto;
    }

    .register-left,
    .register-right {
        width: 100%;
        height: auto;
    }
    .register-left {
      padding: 40px 20px;
    }
    .register-right {
      display: none;
    }

    .row {
        flex-direction: column;
    }

    .register-title {
        margin-top: 30px;
    }
    .register-title.login {
        margin-top: 100px;
    }

    .register-right {
        height: 300px;
    }
    .copy {
      margin-top: 30px;
    }
    .contact-page-container {
      width: 100%;
      padding: 10px 20px;
    }
    .contact-card {
      padding: 35px 10px;
    }
}
