/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #4d4643; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2b2320; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f03c02; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f03c02; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f03c02; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ececec;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* Header Container */
.header {
  background-color:black;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  padding-top: 20px;
}


/* Branding and Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;  /* Increased from 40px */
  width: 50px;   /* Increased from 40px */
  margin-right: 12px;
  border-radius: 50%;
  object-fit: cover; /* Ensures image fills space without distortion */
}

.sitename {
  font-size:21px;
  color:white;
  margin: 0;
}

/* Navigation Menu */
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navmenu ul li a {
  text-decoration: none;
  color:white;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #00bcd4;
}

/* Search Form - Light Theme */
.search-form {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  width:120px;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.search-form:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-input {
  border: none;
  background-color: transparent;
  padding: 8px 10px;
  font-size: 14px;
  outline: none;
  width: 80px;
  color: #333;
}

.search-button {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #0056b3;
}


/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  font-size: 28px;
  color: #fff;
  display: none;
  cursor: pointer;
}

/* Layout Adjustment */
.branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navmenu ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 20px;
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
  }

  .navmenu ul.show {
    display: flex;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .search-input {
    width: 100px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--contrast-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

.hero h2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;
  border-radius: 4px;
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--default-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--default-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}


.categories {
  padding: 40px 20px;
  text-align: center;
  padding-top: 60px;
  
}

.categories-title {
  font-size: 24px;
  color: gray;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.categories-highlight {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 30px;
}

.highlight-text {
  color: red;
}

.categories-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Category Card Styling */
.category-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 600px; /* Adjust card width */
  width: 100%;
  height: 200px; /* Adjust card height */
}


.category-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 10px;
}

.category-content {
  flex: 1;
}

.category-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.category-content p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

/* Medicines Card Specific */
.medicines {
  background-color: #f3fcfc;
  position: relative;
}

.arrow-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.steps-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.steps-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Individual Step Styling */
.step {
  max-width:400px;
  text-align: center;
  padding: 20px;

}

/* Step Icon Styling */
.step-icon {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 15px;
}

.step-icon img {
  width: 100%;
  height:100%;
  border-radius: 50%;
  background-color: #f1f1f1;
  padding: 10px;
  object-fit: cover;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: #ff5a5a;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}

/* Step Title */
.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 15px 0 10px;
}

/* Step Description */
.step-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Button Styling */
.register-button {
  background-color: #e50813;
  color: #fff;
  font-size: 18px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-button:hover {
  background-color: #f40a0a;
  transform: translateY(-3px);
}

.register-button .arrow {
  margin-left: 10px;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    max-width: 100%;
  }
}

p{
  color: white;
}

/* Section Styling */
.class {
  padding-left: 50px;
  text-align: center; /* Center align all content */
  padding: 40px 20px; /* Top/Bottom and Left/Right padding */
  background-color: #f4f4f4; /* Light background color */
}

/* Heading Styling */
.class h1 {
  font-size: 2.5rem; /* Large heading size */
  color: #333; /* Dark text color */
  margin-bottom: 20px; /* Space below heading */
  font-weight: bold; /* Bold heading text */
}

/* Paragraph Styling */
.class p {
  font-size: 1.2rem; /* Slightly larger paragraph text */
  color: #555; /* Medium-dark text color */
  margin-bottom: 30px; /* Space below paragraph */
  line-height: 1.6; /* Improve readability */
  padding-left: 50px;
}

/* Images Styling */
.class img {
  width: 150px; /* Set width of the images */
  height: auto; /* Maintain aspect ratio */
  margin: 10px; /* Add spacing between images */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
  cursor: pointer; /* Pointer cursor for clickable effect */
}

/* Hover Effects for Images */
.class img:hover {
  transform: scale(1.1); /* Slight zoom effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow */
}

/* Responsive Design */
@media (max-width: 768px) {
  .class {
    padding: 20px; /* Reduce padding on smaller screens */
  }

  .class h1 {
    font-size: 2rem; /* Smaller heading for mobile */
  }

  .class p {
    font-size: 1rem; /* Adjust paragraph text size */
  }

  .class img {
    width: 120px; /* Smaller images for mobile */
    margin: 5px; /* Reduce spacing */
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
/* Container for the client section */
.clients {
  background-color: #f8f9fa; /* Light background */
  padding: 40px 0; /* Padding for the section */
  overflow: hidden; /* Hides the overflowing content for clean appearance */
}

.clients .clients-wrap {
  display: flex;
  gap: 20px; /* Space between logos */
  white-space: nowrap; /* Prevents line breaks between logos */
  animation: scroll-logos 20s linear infinite; /* Auto-scrolls the logos */
}

.clients .client-logo {
  flex-shrink: 0; /* Prevents logos from shrinking */
  width: 200px; /* Adjust size of logos */
  height: 100px; /* Adjust height of logos */
  display: inline-flex; /* Keeps logos inline */
  justify-content: center; /* Centers logo inside the container */
  align-items: center; /* Vertically centers logo */
  background-color: #fff; /* Optional: Add a background for contrast */
  border: 1px solid #ddd; /* Optional: Add a subtle border */
  border-radius: 10px; /* Optional: Rounded corners */
  overflow: hidden; /* Ensures logos stay inside their container */
}

.clients .client-logo img {
  max-width: 100%; /* Ensures the image scales responsively */
  height: auto; /* Maintains aspect ratio */
  transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.clients .client-logo:hover img {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Scrolling animation */
@keyframes scroll-logos {
  0% {
    transform: translateX(0); /* Start at the beginning */
  }
  100% {
    transform: translateX(-100%); /* Move halfway to create seamless loop */
  }
}

/* Responsive styles for smaller screens */
@media (max-width: 640px) {
  .clients .client-logo {
    width: 150px; /* Adjust width for smaller screens */
    height: 80px; /* Adjust height for smaller screens */
  }
}


.hero-section {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  padding-top:10px;
  color: white;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}

.stat-item {
  text-align: center;
  padding:150px;
  height:40px;
  padding-top: 40px;
}

.stat-item h2 {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
}

.p {
  font-size: 1.5rem;

}

.register-button {
  background-color: white;
  color: #c0392b;
  padding: 15px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}


/* General Styling for the Promo Section */
.promo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #fff;
}

/* Left Section Styling */
.text-container {
  max-width: 50%;
}

.text-container h1 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 1rem;
  color: #555;
  margin: 10px 0;
}

.highlight-box {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.highlight-box h2 {
  color: #c0392b;
  font-size: 1.2rem;
}

.highlight-box p {
  font-size: 0.9rem;
  color: #777;
}

.download-text {
  margin-top: 20px;
  font-weight: bold;
}

.app-icons img {
  width: 40px;
  margin-right: 10px;
  cursor: pointer;
}

/* Right Section (Single Circular Image) */
.scroll-container {
  width: 400px; /* Set diameter of the circle */
  height: 400px; /* Same as width for a perfect circle */
  overflow: hidden;
  position: relative;
  border-radius: 50%; /* Makes the container a circle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.scroll-container .single-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the circle */
  border-radius: 50%; /* Makes the image circular */
}

/* Responsive Styling */
@media (max-width: 768px) {
  .promo-section {
    flex-direction: column;
    align-items: center;
  }

  .text-container {
    max-width: 90%;
    text-align: center;
    margin-bottom: 20px;
  }

  .scroll-container {
    width: 150px;
    height: 150px;
  }
}


.business-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #fff;
}

.text-content {
  max-width: 40%;
}

.text-content h1 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 30px;
  
}

.text-content p {
  font-size: 1.5rem;
  color: #555;
}
.video-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 700px;
  max-width: 800px;
  margin: 0 auto;
}

.video-content iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

.section1 {
  text-align: left;
  display: flex;
  background-color: #e53e3e;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: 300px;
}

.content h1 {
  font-size: 2.5em;
  margin: 0;
  color: white;

}
.content p {
  font-size: 1.2em;
  margin: 10px 0;
}
.content .buttons {
  margin-top: 20px;
}
.buttons img {
  width: 60px;
  height: auto;
  margin-top: 20px;
  margin-right: 10px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Register section
--------------------------------------------------------------*/
.register-section {
  background-image: url(../img/signup.jpg);
  background-color: #f1f1f1;
  padding: 50px 0;
}

.register-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.register-container label {
  color: #333;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.register-container .form-control {
  width: 100%;
  padding: 10px;
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register-container .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

.register-container .form-control:hover {
  border-color: #0056b3;
}

.register-container .btn-register {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-container .btn-register:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.register-container .login-link a {
  color: #007bff;
  text-decoration: none;  
}

.register-container .login-link a:hover {
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Login section
--------------------------------------------------------------*/
.login-section {
  background-image: url(../img/Login.jpg);
  background-size: cover;
  background-position: center;
  background-color: #f1f1f1;
  padding: 50px 0;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-container label {
  color: #333;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.login-container .form-control {
  width:100%;
  padding: 10px;
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.login-container .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

.login-container .form-control:hover {
  border-color: #0056b3;
}

.login-container .btn-login {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.login-container .btn-login:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.login-container .register-link a {
  color: #007bff;
  text-decoration: none;
}

.login-container .register-link a:hover {
  text-decoration: underline;
}
.social-link {
  display: flex;
  padding-right: 20px; /* Padding on the right side */
  padding-left: 20px; /* Padding on the left side */
  justify-content: flex-end; /* Align items to the right */
  gap: 20px; /* Space between icons */
  margin-top: 20px; /* Margin at the top */
  padding-bottom: 20px;
  padding-top:5px;
}

/* Style each link */
.social-link a {
  font-size: 2rem; /* Increase icon size */
  color: #21089e; /* Set icon color to red */
  text-decoration: none; /* Remove underline */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  display: inline-block; /* Make sure icons are treated as block elements */
  width: 40px; /* Set fixed width */
  height: 40px; /* Set fixed height */
  line-height: 50px; /* Vertically center the icon inside the container */
  text-align: center; /* Horizontally center the icon */
  border-radius: 50%; /* Make the icon container round */
  padding: 10px; /* Add padding around the icon */
  box-sizing: border-box; /* Ensure padding doesn't affect the icon's size */
}
.signup-container {
  background-color: #f8f9fa; /* Lighter background */
  border-radius: 20px; /* Increased border-radius */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Stronger shadow */
  padding: 50px; /* Increased padding */
  width: 100%; /* Ensure full width in smaller screens */
  max-width: 500px; /* Limit max width */
}