* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

:root {
  --primary-color: #2a3136;
  --secondary-color: #ffffff;
  --hover-color: #23292d; /*for hover*/

  --website-max-width: 1366px;
}

html {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

html::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  background-color: var(--primary-color);
  overflow-x: hidden;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Header */
header {
  position: fixed;
  width: 100dvw;
  height: 5rem;
  background: var(--secondary-color);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}

header > .wrapper {
  display: flex;
  max-width: var(--website-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 5rem;
}

.timeman-logo {
  width: 20%;
  height: 100%;
}

.timeman-logo-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.timeman-logo-emblem {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.timeman-logo-word {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.timeman-nav {
  display: flex;
  width: 80%;
  justify-content: space-between;
  align-items: center;
}

.timeman-left-nav {
  display: flex;
  list-style-type: none;
  gap: 50px;
}

.timeman-right-nav {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 15px;
}

.line {
  height: 16px;
  width: 1px;
  background: var(--primary-color);
}

.timeman-nav-link {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.timeman-nav-link.active {
  font-weight: 700;
}

.timeman-nav-link:not(.register-btn):hover {
  font-weight: 700;
  transition: all 0.3s ease;
}

.register-btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);

  &:hover {
    background: var(--hover-color);
    transition: all 0.3s ease-in-out;
  }
}

/* Main Section */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100dvw;
  height: auto;
}

.timeman-wrapper {
  scroll-margin-top: 5rem;
  padding: 3.5rem 5rem;
  width: var(--website-max-width);
}

.timeman-hero-section {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  color: var(--secondary-color);
  overflow: hidden !important;
}

.timeman-hero-slogan {
  text-align: center;
  font-size: 50px;
  margin-bottom: 1rem;
}

.timeman-hero-description {
  text-align: center;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.timeman-hero-buttons {
  display: flex;
  gap: 50px;
  margin-bottom: 2rem;
}

.timeman-hero-buttons > a {
  text-decoration: none;
}

.timeman-hero-buttons .hero-learn-more-btn {
  border: 1px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--secondary-color);
}
.timeman-hero-buttons .hero-learn-more-btn > i {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}

.timeman-hero-buttons .hero-learn-more-btn:hover > i {
  left: 5px;
  transition: all 0.3s ease;
}

.timeman-hero-buttons .hero-try-timeman-btn {
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--primary-color);
}

.timeman-hero-buttons .hero-try-timeman-btn > i {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}

.timeman-hero-buttons .hero-try-timeman-btn:hover > i {
  left: 5px;
  transition: all 0.3s ease;
}

.timeman-hero-image {
  scroll-margin-top: 5rem;
  overflow: hidden;
}

.timeman-hero-image-wrapper {
  width: var(--website-max-width);
  padding: 0 5rem;
}

.timeman-hero-image > img {
  width: 100%;
  object-fit: contain;
}

/* Feature section */
.timeman-features-section {
  scroll-margin-top: 5rem;
  color: var(--secondary-color);
  height: fit-content;
}

.timeman-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

h2 {
  font-size: 36px;
  font-weight: 600;
}

.timeman-section-header > p {
  opacity: 0.75;
}

.timeman-features-section-body {
  display: flex;
  gap: 15px;
  width: 100%;
}

.timeman-features-section-body .timeman-section-details {
  width: 60%;
}

.timeman-features-section-body .timeman-feature-image {
  display: flex;
  justify-content: center;
  width: 40%;
  animation: slideLeft 1s ease;
}

.timeman-features {
  padding: 10px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeman-features.active {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.timeman-features:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.timeman-features > p {
  font-size: 18px;
  font-weight: 600;
}

.timeman-features > span {
  font-size: 14px;
  opacity: 0.75;
}

.timeman-feature-image > img {
  width: 100%;
  object-fit: contain;
}

.slide-left {
  animation: slideLeft 1s ease;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Industries */
.timeman-industries-section {
  scroll-margin-top: 5rem;
  color: var(--secondary-color);
  height: fit-content;
}

.timeman-industries-section-body {
  display: flex;
  gap: 25px;
}

.timeman-card-holder {
  width: 400px;
  height: 250px;
  padding: 10px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  cursor: pointer;
}

.timeman-card-holder .front-display .front-display-img-holder {
  width: 100%;
  height: auto;
}

.timeman-card-holder.active > .front-display {
  display: none;
}

.timeman-card-holder:hover > .front-display {
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.front-display {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.front-display > p {
  font-weight: 600;
}

.front-display-img-holder > img {
  width: 100%;
  height: auto;
}

.timeman-card-holder.active > .back-display {
  display: flex;
}

.timeman-card-holder > .back-display {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  background: var(--secondary-color);
  color: var(--primary-color);
}

.back-display > p:first-child {
  font-weight: 600;
}

.back-display > p:nth-child(2) {
  font-size: 14px;
}

.back-display .timeman-industries-btn {
  text-decoration: none;
  color: var(--secondary-color);
  background: var(--primary-color);
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 6px;
}

.flip {
  animation: flip 0.75s ease forwards;
}

@keyframes flip {
  to {
    transform: rotateY(360deg);
  }
}

/* Benefits */
.timeman-benefits-section {
  scroll-margin-top: 5rem;
  color: var(--secondary-color);
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeman-benefits-left-div {
  width: 50%;
}

.timeman-benefits-left-div > h2 {
  margin-bottom: 50px;
}

.timeman-benefits-left-div .timeman-benefits-btn {
  text-decoration: none;
  color: var(--primary-color);
  padding: 10px 25px;
  background: var(--secondary-color);
  border-radius: 10px;
  font-weight: 600;
}

.timeman-benefits-right-div {
  width: 50%;
}

.timeman-benefits-right-div .timeman-benefits-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.timeman-benefits-buttons .timeman-benefits-icon-holder {
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeman-benefits-icon-holder > i {
  font-size: 36px;
}

.timeman-benefits-icon-holder.active {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.timeman-benefits-icon-holder:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.timeman-benefits-body {
  padding: 15px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
}

.timeman-benefits-details {
  display: none;
  flex-direction: column;
  gap: 25px;
}

.timeman-benefits-details.active {
  display: flex;
}

.timeman-benefits-details > p {
  font-weight: 700;
}

/* Why timeman */
.timeman-why-timeman-section {
  scroll-margin-top: 5rem;
  color: var(--secondary-color);
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-timeman-body {
  width: 100%;
}

.why-timeman-body .why-timeman-body-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.why-timeman-label {
  width: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.why-timeman-label > h3 {
  font-size: 28px;
  font-weight: 600;
}

.why-timeman-label-numbering {
  height: 50px;
  width: 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
}

.why-timeman-image-holder {
  width: 50%;
}

.why-timeman-image-holder .why-timeman-img {
  width: 100%;
  object-fit: contain;
}

/* Pricing */
.timeman-pricing-section {
  scroll-margin-top: 5rem;
  color: var(--secondary-color);
  height: fit-content;
}

.timeman-pricing-section-body {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.popular-pricing {
  background: #8a38f5;
  padding: 10px;
  border-radius: 10px;
}

.popular-pricing > h2 {
  font-size: 28px;
  text-align: center;
  padding-bottom: 10px;
}

.pricing-holder {
  /* border: 1px solid var(--secondary-color); */
  background: var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  height: 40rem;
}

.pricing-holder > h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.price {
  margin-bottom: 60px;
}

.price > p {
  font-size: 32px;
  font-weight: 600;
}

.price > p span {
  font-size: 14px;
  font-weight: 400;
}

.price > span {
  font-size: 14px;
}

.price-btn-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.price-btn {
  text-decoration: none;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
}

.no-requirements {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 200;
  opacity: 0.75;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features > h4 {
  font-size: 18px;
  font-weight: 600;
}

.features > ul {
  margin-left: 20px;
  font-size: 14px;
}

/* FAQs */
.timeman-faq-section {
  scroll-margin-top: 5rem;
  color: var(--secondary-color);
  height: fit-content;
}

.timeman-faq-section-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-holder {
  display: flex;
  flex-direction: column;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}

.faq-question > p {
  font-size: 18px;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.4s ease;
}

.faq-answer > p {
  padding: 40px;
}

.faq-answer > ul {
  margin-top: -20px;
  margin-bottom: -20px;
  margin-left: 100px;
}

.faq-answer.open {
  max-height: 1200px;
}
.faq-question {
  cursor: pointer;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-question.open i {
  transform: rotate(180deg);
}

/* CTA */
.timeman-cta-section {
  background: var(--secondary-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.timeman-cta-section > h2 {
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
}

.cta-timeman-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-timeman-logo > img {
  height: 100px;
  object-fit: contain;
}

.cta-buttons {
  display: flex;
  gap: 50px;
}

.cta-buttons .cta-try-timeman-btn {
  text-decoration: none;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 10px 20px;
}

.cta-try-timeman-btn > i {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}

.cta-try-timeman-btn:hover > i {
  left: 5px;
  transition: all 0.3s ease;
}

.cta-buttons .cta-get-demo-btn {
  text-decoration: none;
  color: var(--secondary-color);
  background: var(--primary-color);
  padding: 10px 20px;
  border-radius: 8px;
}

.cta-get-demo-btn > i {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}

.cta-get-demo-btn:hover > i {
  left: 5px;
  transition: all 0.3s ease;
}

/* Footer */
footer {
  width: 100dvw;
  height: fit-content;
  background: var(--primary-color);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
}

footer > .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--website-max-width);
  height: 100%;
  padding: 3.5rem 5rem 1rem 5rem;
}

.timeman-footer-body {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.timeman-footer-body .footer-logo {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.footer-logo .footer-logo-img {
  width: 160px;
}

.footer-logo > p {
  color: var(--secondary-color);
  opacity: 0.75;
}

.footer-logo-img > img {
  width: 100%;
  object-fit: contain;
}

.timeman-footer-body .footer-links {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.footer-links .footer-main-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.footer-main-links-wrapper {
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 0 40px 40px 40px;
  gap: 10px;
}

.footer-main-links-wrapper .footer-main-link-header {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
}

.footer-link-item {
  padding: 5px;
  list-style-type: none;
}

.footer-link-item .footer-nav-link {
  text-decoration: none;
  color: var(--secondary-color);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-privacy-social-links {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 15px;
  margin-top: -50px;
}

.footer-privacy-social-links .privacy-social-nav-link {
  text-decoration: none;
  color: var(--secondary-color);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.privacy-social-nav-link:hover {
  opacity: 1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-line {
  height: 16px;
  width: 1px;
  background: var(--secondary-color);
}

.timeman-footer-copyright {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* text-align: center; */
  color: var(--secondary-color);
  opacity: 0.75;
  font-size: 12px;
  gap: 10px;
}

/* Contact */
.contact-top-section {
  margin-top: 5rem;
  padding: 3.5rem 5rem;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 55px;
}

.contact-top-section .timeman-contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.timeman-contact-wrapper .timeman-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.timeman-contact > i {
  font-size: 30px;
}

.contact-form-section {
  background: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-name,
.contact-method,
.company-other-details {
  display: flex;
  gap: 20px;
}

.first-name,
.last-name,
.email,
.number,
.number-of-employees,
.reason {
  width: 50%;
}

.first-name,
.last-name,
.email,
.number,
.company-name,
.message {
  display: flex;
  flex-direction: column;
}

input,
textarea,
select {
  width: 100%;
  padding: 6px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: 0.2s ease;
}

select {
  color: #757575;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(42, 49, 54, 0.4);
  box-shadow: 0 0 0 3px rgba(42, 49, 54, 0.2);
}

/* Chrome, Safari, Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-footer {
  display: flex;
  justify-content: space-between;
}

.submit-btn {
  padding: 10px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 10px;
  width: 300px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--hover-color);
  transition: all 0.3s ease;
}

.form-footer > a {
  font-size: 14px;
}

/* Get demo */
.get-demo-top-section {
  margin-top: 5rem;
  color: var(--secondary-color);
  text-align: center;
  padding: 5rem;
}

.get-demo-form-section {
  background: var(--secondary-color);
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}

.get-demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.get-demo-form-footer > p {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 5px;
}

.about-top-section {
  margin-top: 5rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  padding: 5rem;
  width: 100%;
}

.about-intro-content-section {
  display: flex;
  flex-direction: column;
}

.about-intro-content-section .content-introduction {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-introduction .content-introduction-text {
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 600;
  width: 500px;
  padding: 50px;
}

.content-introduction .content-introduction-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

.content-introduction-image > img {
  width: 400px;
  object-fit: contain;
}

.about-middle-content {
  background: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  width: 100%;
  padding: 20px;
  font-size: 36px;
}

.about-details-content {
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeman-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.75;
}

.timeman-details > ul li {
  margin-left: 50px;
}

.timeman-promise {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeman-promise > h3 {
  font-size: 28px;
  font-weight: 600;
}

.timeman-promise > p {
  opacity: 0.75;
}

.about-bottom-section {
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.about-bottom-section .about-cta-btn {
  padding: 10px 25px;
  text-decoration: none;
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 10px;
}

/* Terms */
.timeman-terms-section {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--primary-color);
  background: var(--secondary-color);
}

.timeman-terms-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--website-max-width);
}

.timeman-terms-header > img {
  width: 75px;
}

.timeman-terms-content {
  width: var(--website-max-width);
  padding: 3.5rem 5rem;
}

.terms-title {
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.timeman-terms-content > ul li {
  margin-left: 40px;
}

/* Privacy policy */
.timeman-privacy-policy-section {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--primary-color);
  background: var(--secondary-color);
}

.timeman-privacy-policy-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--website-max-width);
}

.timeman-privacy-policy-header > img {
  width: 75px;
}

.timeman-privacy-policy-content {
  width: var(--website-max-width);
  padding: 3.5rem 5rem;
}

.policy-title {
  font-weight: 700;
  margin: 30px 0 20px 0;
}

.timeman-privacy-policy-content > ul li {
  margin-left: 40px;
}

/* Login */
.timeman-login-wrapper,
.timeman-register-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  width: 100dvw;
}

.login-left-div,
.register-black-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  padding: 0 5rem;
  color: var(--secondary-color);
}

.login-left-div > p {
  opacity: 0.75;
}

.login-right-div,
.register-white-div {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 3.5rem 5rem;
}

.login-right-div .login-timeman-logo,
.register-white-div .register-timeman-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.login-right-div .login-timeman-logo img,
.register-white-div .register-timeman-logo img {
  height: 75px;
}

.login-right-div > h2,
.register-white-div > h2 {
  margin-bottom: 30px;
}

.login-form,
.register-form {
  display: flex;
  flex-direction: column;
}

.login-form .username,
.login-form .passkey {
  margin-bottom: 15px;
}

.login-form .login-btn,
.register-form .next-btn,
.register-form-buttons .next-btn,
.register-form-buttons .register-btn {
  border: none;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.login-btn:hover,
.next-btn:hover,
.register-btn:hover {
  background: var(--hover-color);
  transition: all 0.3s ease;
}

.have-account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.have-account > a {
  color: var(--primary-color);
  font-style: italic;
}

.login-right-div > .copyright,
.register-white-div > .copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  text-align: center;
}

.register-form {
  display: none;
  overflow: auto;
  padding: 0 5px;
}

.register-form.active {
  display: flex;
}

.register-input-group {
  margin-bottom: 15px;
}

.register-form-buttons {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.register-form-buttons .back-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: var(--secondary-color);
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 50%;
}

.back-btn:hover {
  font-weight: 600;
  transition: all 0.3s ease;
}

.register-form-buttons .next-btn,
.register-form-buttons .register-btn {
  width: 50%;
}

.register-form .register-summary {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.register-summary-label {
  font-weight: 600;
}

.agree-to-terms {
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 11px;
  margin: 10px 0;
}

.agree-to-terms > a {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0 2px;
}

.agree-to-terms > input {
  width: 5%;
}

.login-left-div,
.register-white-div {
  animation: toLeft 0.5s ease forwards;
}

.login-right-div,
.register-black-div {
  animation: toRight 0.5s ease forwards;
}

@keyframes toLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes toRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.cookie-consent-bar {
  width: 100%;
  background: #1f2428;
  color: #d0d3d6;
  font-size: 0.85rem;
  line-height: 1.4;
  border-top: 1px solid #2e3438;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
}
.cookie-consent-bar a {
  color: #6d4dff;
  font-weight: 600;
  text-decoration: none;
}
.cookie-consent-bar a:hover {
  text-decoration: underline;
}
.cookie-consent-content {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cookie-agree-btn {
  align-self: flex-start;
  background: #6d4dff;
  color: #fff;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease;
}
.cookie-agree-btn:hover {
  background: #593bcc;
}
.fade-out {
  animation: cookieFade 0.35s ease forwards;
}
@keyframes cookieFade {
  to {
    opacity: 0;
    transform: translateY(4px);
  }
}

.swal2-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  background: transparent !important;
  background-color: transparent !important;
  /* Center the popup */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation,
.swal2-container.swal2-shown,
div.swal2-container {
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.swal2-popup {
  font-family: "Poppins", sans-serif !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}

.swal2-title {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  color: #2a3136 !important;
}

.swal2-html-container {
  font-family: "Poppins", sans-serif !important;
  color: #555 !important;
}

.swal2-confirm {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  padding: 0.6rem 1.5rem !important;
}

.swal2-cancel {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  padding: 0.6rem 1.5rem !important;
}

.swal2-icon.swal2-success {
  border-color: #2a3136 !important;
  color: #2a3136 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(42, 49, 54, 0.3) !important;
}

.swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: #2a3136 !important;
}

.swal2-icon.swal2-info {
  border-color: #2a3136 !important;
  color: #2a3136 !important;
}

.swal2-close {
  color: #888 !important;
}

.swal2-close:hover {
  color: #2a3136 !important;
}

.app-swal-popup {
  font-family: "Poppins", sans-serif !important;
}

.app-swal-title {
  font-weight: 600 !important;
  color: #2a3136 !important;
}

.app-swal-btn,
.app-swal-btn-cancel {
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
}
