* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
}

.logo-name {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 0px !important;
}

a {
  text-decoration: none !important;
}

a .logo-name {
  border: none !important;
  text-decoration: none !important;
  margin-bottom: 0px !important;
}

:root {
  --primary-color: #3b82f6;
  /* A clear blue for Standard/Featured */
  --light-bg: #f3f4f6;
  --dark-text: #1f2937;
  --gray-text: #6b7280;
  --card-bg: #ffffff;
  --border-radius: 12px;
}

body {
  height: 100vh;
  /* full viewport height */
  background: linear-gradient(to right, #ffffff 0%, #ffffff 50%, #D0E6FA 100%);
  /* ensure colors strong and crisp */
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  padding: 20px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand h2 {
  color: #2574f2;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2574f2;
}

.auth-buttons a {
  margin-left: 12px;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.login-btn {
  color: #2574f2;
}

.signup-btn {
  background: #2574f2;
  color: #fff;
}

.signup-btn:hover {
  background: #0d5ee0;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.divider {
  margin: 30px 0;
}

.divider img {
  width: 400px;
  max-width: 100%;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #2574f2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0d5ee0;
}

.hero-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

.profile-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.profile-wrapper img {
  width: 100%;
  border-radius: 20px;
}

/* ===========================
   BOTTOM SECTION
=========================== */
.bottom-section {
  text-align: center;
  margin: 80px 0 60px;
}

.bottom-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.bottom-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  font-weight: 600;
  color: #a3a3a3;
}

.bottom-tabs span {
  font-size: 24px;
  font-weight: 500;
  transition: color 0.3s;
}

.bottom-tabs span:hover {
  color: #2574f2;
  cursor: pointer;
}

/* ===========================
   WORKDAY SECTION
=========================== */
.workday-about {
  padding: 80px 0;
  background: #F9F8FE;
}

.workday-container {
  width: 100%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.workday-text {
  flex: 1 1 50%;
}

.workday-text h2 {
  font-size: 41px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 57px;
}

.workday-text p {
  color: #5f5f5f;
  margin-bottom: 15px;
  max-width: 550px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

.workday-features {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.workday-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-radius: 12px;
  padding: 20px;

}

.workday-card img {
  width: 46px;
  height: 46px;
  background: #fff;
  padding: 8px;
  border-radius: 5px;
  box-shadow: 1px 1px 3px #efefef;
}

.workday-card-text h4 {
  margin: 0;
  font-weight: 600;
  color: #111;
}

.workday-card-text p {
  margin-top: 6px;
  font-size: 16px;
  color: #666;
  line-height: 26px;
}

/* ===========================
   BENEFITS SECTION
=========================== */
.benefit-overview {
  padding: 100px 0;

}

.benefit-wrapper {
  width: 90%;
  max-width: 1320px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}



.benefit-content {
  flex: 1 1 45%;
}

.benefit-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 47px;
}

.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.benefit-visual {
  flex: 1 1 45%;
  position: relative;
}

.benefit-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.benefit-photo img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.bottom-tabs span:hover {
  color: #a3a3a3;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 42px;
  }

  .workday-text h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .bottom-tabs {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-image {
    flex: 1 1 100%;
    margin-top: 30px;
  }

  .workday-container,
  .benefit-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .workday-card {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .bottom-tabs span {
    font-size: 20px;
  }

  .workday-text h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.pricing-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* --- Header Section --- */
.pricing-header {
  margin-bottom: 40px;
}

.pricing-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-header h1 strong {
  /* To mimic the bolding in the screenshot */
  font-weight: 700;
}

.pricing-header p {
  color: var(--gray-text);
  font-size: 1.1rem;
}

/* --- Billing Toggle --- */
.billing-toggle {
  display: inline-flex;
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 50px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.toggle-btn {
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

.toggle-btn.active {
  background-color: var(--primary-color);
  color: var(--card-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* --- Pricing Cards --- */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* Space between cards */
  flex-wrap: wrap;
  /* Allows cards to stack on smaller screens */
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  width: 350px;
  /* Fixed width for the cards */
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

/* Highlighted (Standard) Card Styling */
.card.featured {
  position: relative;
  color: #ffffff;
  /* White text for the blue background part */
  padding: 0;
  /* Adjust padding for the featured card layout */
  overflow: hidden;
  /* Create the blue top section with a gradient and rounded bottom to match the image */
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 45%, var(--card-bg) 45%, var(--card-bg) 100%);
}

.card.featured .plan-title,
.card.featured .plan-tagline,
.card.featured .price,
.card.featured .save-tag {
  /* Center the top content and give it padding */
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 2;
  /* Ensure text is above any potential background effects */
}

.card.featured .plan-title {
  padding-top: 40px;
}

.card.featured .price {
  padding-bottom: 10px;
}

.card.featured .features-list,
.card.featured .btn {
  /* Give the white bottom section padding */
  padding-left: 30px;
  padding-right: 30px;
}

.card:not(.featured) {
  border: 1px solid #e5e7eb;
  /* Subtle border for non-featured cards */
}

/* --- Plan Details --- */
.plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-tagline {
  color: var(--gray-text);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.card.featured .plan-tagline {
  color: #e5e7eb;
  /* Lighter text for the blue background */
}

.price {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1;
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.card.featured .price {
  color: #ffffff;
}

.save-tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 40px;
}

/* --- Features List --- */
.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1;
  /* Pushes the button to the bottom */
}

.features-list li {
  padding: 10px 0;
  font-size: 1rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
}

.check-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 12px;
}

/* --- Buttons --- */
.btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid transparent;
}

.basic-btn {
  background-color: var(--card-bg);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.basic-btn:hover {
  background-color: var(--light-bg);
}

.standard-btn {
  background-color: var(--primary-color);
  color: var(--card-bg);
  margin-bottom: 40px;
  /* Add margin to separate from the blue top */
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.standard-btn:hover {
  background-color: #2563eb;
  /* Darker blue on hover */
}

.premium-btn {
  background-color: var(--card-bg);
  color: var(--gray-text);
  border: 1px solid var(--gray-text);
}

.premium-btn:hover {
  background-color: var(--light-bg);
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 1100px) {
  .pricing-cards {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 2.5rem;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }
}

.pricing-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* --- Header Section --- */
.pricing-header {
  margin-bottom: 50px;
}

.pricing-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-header h1 strong {
  font-weight: 700;
}

.pricing-header p {
  color: var(--gray-text);
  font-size: 1.05rem;
}

/* --- Billing Toggle --- */
.billing-toggle {
  display: inline-flex;
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 5px;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background-color: transparent;
  color: var(--dark-text);
  transition: all 0.2s ease-in-out;
}

.toggle-btn.active {
  background-color: var(--primary-color);
  color: var(--card-bg);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* --- Pricing Cards --- */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
  /* Important for featured card positioning */
}

/* Basic and Premium Card Styling */
.basic-card,
.premium-card {
  border: 1px solid #e5e7eb;
}

/* Highlighted (Standard) Card Styling */
.card.featured {
  position: relative;
  padding: 0;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
  /* Stronger shadow */
}

/* This ::before element creates the blue rounded banner */
.card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  /* Adjust height to match the proportion in the image */
  background-color: var(--primary-color);
  border-radius: 0 0 50px 50px / 0 0 50px 50px;
  /* Creates the rounded bottom edge */
  z-index: 1;
}

/* Style the content *inside* the featured card */
.card.featured .plan-title,
.card.featured .plan-tagline,
.card.featured .price,
.card.featured .save-tag {
  position: relative;
  text-align: center;
  color: white;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 2;
  /* Keep text above the blue banner */
}

.card.featured .plan-title {
  padding-top: 40px;
}

.card.featured .plan-tagline {
  color: #eff6ff;
  /* Very light blue for tagline */
}

/* Wrapper for the white bottom section of the featured card */
.card-content-wrap {
  padding: 0 30px 40px 30px;
  background-color: var(--card-bg);
  position: relative;
  z-index: 2;
  margin-top: -30px;
  /* Pulls the white section up slightly to overlay the blue curve */
}

/* --- Plan Details --- */
.plan-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-tagline {
  color: var(--gray-text);
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.price .currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: -5px;
}

.card.featured .price {
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.save-tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 40px;
}

/* --- Features List --- */
.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1;
}

.features-list li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
}

.check-icon {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  margin-right: 12px;
}

/* --- Buttons --- */
.btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.basic-btn {
  background-color: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.basic-btn:hover {
  background-color: var(--light-bg);
}

.standard-btn {
  background-color: var(--primary-color);
  color: var(--card-bg);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.standard-btn:hover {
  background-color: var(--primary-dark);
}

.premium-btn {
  background-color: var(--card-bg);
  color: var(--gray-text);
  border: 1px solid #d1d5db;
  /* Light gray border for non-highlighted button */
}

.premium-btn:hover {
  background-color: #f3f4f6;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 1050px) {
  .pricing-cards {
    gap: 20px;
  }

  .card {
    width: 300px;
  }
}

@media (max-width: 960px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 350px;
  }
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
}

.pricing-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  line-height: 56px;
}

.pricing-header p {
  color: #666;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 0px;
}

/* ---- Billing Switch ---- */
.billing-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  padding: 5px;
  width: 240px;
  position: relative;
}

.billing-switch-btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
}

.billing-switch-btn.active {
  color: #fff;
}

.billing-switch-slider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 115px;
  background: #2d6ef7;
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 1;
}

.billing-switch.yearly .billing-switch-slider {
  left: 120px;
}

/* ---- Pricing Cards ---- */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pricing-box {
  background: #fff;
  border-radius: 16px;
  width: 320px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid #E6E6E6;
}

.pricing-box:hover {
  transform: translateY(-5px);
}

.pricing-box--highlighted {
  background: linear-gradient(to bottom, #478bff, #3076f5);
  color: #000000;
  position: relative;
}

.plan-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.plan-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 25px;
}

.pricing-box--highlighted .plan-subtitle {
  color: #e1e9ff;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.plan-save {
  background: #fff;
  color: #3076f5;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  margin-top: 15px;
  text-align: left;
  padding-left: 0px;
}

.feature-item {
  margin: 15px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}


.pricing-box--highlighted .feature-item::before {
  color: #fff;
}

.plan-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  background: #ffffff;
  color: #2d6ef7;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(210, 210, 210, 0.2);
}

.plan-btn:hover {
  background: #2d6ef7;
  color: #fff;
}

.pricing-box--highlighted .plan-btn {
  background: #fff;
  color: #2d6ef7;
}

.pricing-box--highlighted .plan-btn:hover {
  background: #f0f3ff;
}

@media (max-width: 900px) {
  .pricing-wrapper {
    flex-direction: column;
  }
}

.work-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 60px 20px;
  background: #201B1F;
}


.layout-box {
  display: flex;
  max-width: 1320px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

/* LEFT SIDE */
.info-block {
  flex: 1;
  min-width: 300px;
}

.title-text {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.2;
}

.intro-para {
  font-size: 16px;
  color: #bdbdbd;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight-quote {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.quote-icon {
  font-size: 60px;
  color: #2d6ef7;
  line-height: 1;
}

.quote-line {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
}

/* RIGHT SIDE */
.signup-card {
  flex: 1;
  min-width: 350px;
  background-color: #2A2A2A;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
}

.logo-area img {
  width: 60px;
  margin-bottom: 15px;
}

.form-heading {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}

.form-area {
  text-align: left;
}

.label-text {
  font-size: 14px;
  color: #ccc;
  display: block;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  background: #fff;
  color: #333;
}

textarea {
  resize: none;
}

.action-btn {
  width: 100%;
  padding: 14px;
  background-color: #2d6ef7;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.action-btn:hover {
  background-color: #1f57d1;
}

.note-text {
  text-align: right;
  margin-top: 10px;
  font-size: 13px;
  color: #bdbdbd;
}

.note-text a {
  color: #fff;
  text-decoration: none;
}

.note-text a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .layout-box {
    flex-direction: column;
    text-align: center;
  }

  .title-text {
    font-size: 34px;
  }

  .signup-card {
    text-align: left;
  }
}

/* Footer Container */
.end-section {
  padding: 60px 10%;
  background-color: #1e1b1d;
}

.end-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

/* Left Brand Section */
.end-brand {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.end-logo {
  color: #4588f2;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.end-text {
  color: #999;
  font-size: 18px;
  margin-bottom: 25px;
}

/* Email Input Box */
.end-input-box {
  display: flex;
  align-items: center;
  border: 2px solid #666;
  border-radius: 40px;
  padding: 5px 10px;
  max-width: 430px;
}

.end-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  flex: 1;
  padding: 10px;
}

.end-btn {
  background-color: #4588f2;
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 22px;
}

.end-btn:hover {
  background-color: #2f6fd1;
}

.end-arrow {
  display: inline-block;
}

/* Quick Links / Contact */
.end-links,
.end-contact {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  display: grid;
  justify-content: center;
}

.end-links,
{}

.end-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.end-list {
  list-style: none;
  padding-left: 0px;
}

.end-list li {
  margin: 10px 0;
  color: #999;
}

.end-list a {
  text-decoration: none;
  color: #999;
}

.end-list a:hover {
  color: #fff;
}

/* Bottom Section */
.end-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  font-size: 16px;
  color: #ccc;
}

.end-policy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.end-policy a {
  text-decoration: none;
  color: #ccc;
}

.end-policy a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .end-container {
    flex-direction: column;
  }

  .end-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }


}

@media (max-width: 600px) {

  a.btn.btn-registore,
  a.btn.btn-registoress {
    width: 100% !important;
  }
}



.page-wrapper {
  display: flex;
  height: 100vh;
}

/* Left side image */
.image-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2689EC;
}

.image-section img {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;

}

/* Right side login */
.form-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: #ffffff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.05);
  overflow: scroll;
}

.form-container {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.form-container h2 {
  margin-bottom: 10px;
  font-size: 36px;
  color: #000000;
}

.form-container p {
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
}

.form-container input[type="text"],
.form-container input[type="number"],
.form-container input[type="password"] {
  width: 100%;
  padding: 14px 15px;
  margin: 10px 0;
  font-weight: 400;
  border-radius: 8px;
  font-size: 15px;
}


.input-wrapper input,
.password-wrapper input {
  width: 100%;
  padding: 12px 15px;

  font-weight: 400;
  border-radius: 0px;
  background-color: #EFF0F2;
  font-size: 15px;
  outline: none;

}


.input-wrapper input::placeholder,
.password-wrapper input::placeholder {
  color: #838383;
  opacity: 1;

}


.input-wrapper input:focus,
.password-wrapper input:focus {
  border-color: #ccc;

  box-shadow: none;

}


.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 60%;
  right: 14px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #555;
  user-select: none;
}

.form-container .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}



.form-container .options label {
  display: flex;
  align-items: center;

  gap: 8px;

  cursor: pointer;
  white-space: nowrap;

}

.form-container .options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-container .options a {
  text-decoration: none;
  color: #2A89E7;
  transition: color 0.3s;
}

.form-container .options a:hover {
  color: #2574c9;
}

.form-container button {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  background-color: #2A89E7;
  border: none;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.form-container button:hover {
  background-color: #2574c9;
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media(max-width: 768px) {
  .page-wrapper {
    flex-direction: column;
  }

  .image-section {
    display: none;
  }

  .form-section {
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
  }
}

.input-wrapper,
.password-wrapper {
  width: 100%;
  margin-bottom: 15px;
  text-align: left;
  /* ensures label is left-aligned */
}

.input-label {
  display: block;
  margin-bottom: 0px;
  font-weight: 400;
  color: #4D5959;
  font-size: 16px;
}

a.btn.btn-registore {
  background: #E9F3FD;
  border-radius: 30px;
  color: #2689EC;
  padding: 10px 20px;
  width: 50%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}


a.btn.btn-registore:hover,
a.btn.btn-registore:active,
a.btn.btn-registore:focus {
  background: #E9F3FD;
  color: #2689EC;
  text-decoration: none;
  border: none;
}

a.btn.btn-registoress {
  background: #E9F3FD;
  border-radius: 30px;
  color: #2689EC;
  padding: 10px 20px;
  width: 40%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  gap: 9px;
}


a.btn.btn-registoress:hover,
a.btn.btn-registoress:active,
a.btn.btn-registoress:focus {
  background: #E9F3FD;
  color: #2689EC;
  text-decoration: none;
  border: none;
}

.img-upload {
  width: 150px;
  height: 150px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.img-upload img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden-input {
  display: none;
}

.scroll-none {
  scrollbar-width: none;
  -ms-overflow-style: none;

}

.scroll-none::-webkit-scrollbar {
  display: none;
}

.scroll-none {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 0px 15px;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-none::-webkit-scrollbar {
  display: none;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
}


.scroll-none>.input-wrapper:last-child {
  margin-bottom: 0;
}


@media (max-width: 768px) {
  .scroll-none {
    grid-template-columns: 1fr;

  }
}


.crop-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

.crop-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 450px;
  text-align: center;
  animation: slideUp 0.3s ease-in-out;
}

.cropper-container {
  overflow: hidden;
  min-height: 400px !important;
  min-width: 410px !important;
}

.crop-box img {
  max-width: 100%;
  border-radius: 10px;
}

.crop-actions {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}



@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.photo-upload {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.photo-circle {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  border: 2px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #777;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease, color 0.3s ease;
  background-color: #f9f9f9;
}

.photo-circle:hover {
  border-color: #007bff;
  color: #007bff;
}

.photo-circle img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0px !important;
}

.btn-punch-in,
.btn-punch-out,
.btn-punch-yellow {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 110px;
}

.btn-punch-in {
  background: #3b82f6;
  color: #ffffff;
}

.btn-punch-yellow:hover {
  background: #FF9800;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-punch-yellow {
  background: #FF9800;
  color: #ffffff;
}

.btn-punch-in:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-punch-in:active {
  background: #1d4ed8;
  transform: translateY(0);
}

.btn-punch-out {
  background: #ef4444;
  color: #ffffff;
}

.btn-punch-out:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-punch-out:active {
  background: #b91c1c;
  transform: translateY(0);
}