/* Main Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* Banner Section */
.banner-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("assets/bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Authentication Section */
.auth-section {
  /* background-color: #f8f9fa; */
  padding: 60px 0;
}

/* Footer */
.footer {
  background-color: #212529;
  color: #fff;
  padding: 20px 0;
}

/* Logo */
.logo {
  max-width: 250px;
  margin-bottom: 20px;
}

/* Download Buttons */
.download-buttons {
  display: flex;
}

.download-btn {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

/* Form Container */
.form-container {
  /* background-color: white; */
  border-radius: 10px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
  padding: 30px;
}

/* Custom Tabs */
.custom-tabs-container {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-tabs {
  display: flex;
  width: 300px;
  background-color: #ebebeb;
  padding: 2px;
}

.custom-tab-button {
  flex: 1;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.custom-tab-button.active {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #000;
}

/* Form Elements */
.form-label {
  font-weight: 500;
}

.form-control,
.form-select {
  border-radius: 0;
  border: none;
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.4);
  padding: 10px 12px;
}

.btn-primary {
  background-color: #ed223c;
  border-color: #ed223c;
  padding: 10px 20px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #d01e35;
  border-color: #c51c32;
}

/* Dashboard Section */
.dashboard-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.dashboard-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.dashboard-icon-img {
  max-width: 100%;
  max-height: 100%;
}

.dashboard-item {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .dashboard-item {
    text-align: left;
  }
}

.dashboard-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.dashboard-item p {
  color: #6c757d;
}

.dashboard-heading {
  font-size: 30pt;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.dashboard-text {
  font-size: 20pt;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
}

.screens-image {
  max-width: 100%;
  height: auto;
}
.title1 {
  font-size: 45pt;
  font-family: "Poppins", sans-serif;
  font-weight: bold !important;
}
/* Download buttons styles */
.download-buttons {
  display: flex;
  align-items: center;
}

.download-buttons a {
  display: inline-block;
}

.download-btn {
  max-width: 180px;
  height: auto;
}
.title2 {
  font-size: 20pt;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

.logo.logo2 {
  height: 80px;
  margin-bottom: 0;
}
.logo.logo2 img {
  max-height: 100%;
}
/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .form-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .dashboard-section .col-md-4 {
    margin-bottom: 30px;
  }

  /* Center all dashboard items on mobile */
  .dashboard-item {
    text-align: center;
    text-align: -webkit-center;
  }

  .dashboard-item h3,
  .dashboard-heading,
  .dashboard-text {
    text-align: center;
  }

  .logo {
    max-width: 100px;
  }

  .title1 {
    font-size: 23pt;
    font-family: "Poppins", sans-serif;
    font-weight: bold !important;
  }

  /* Reduce banner section height on mobile */
  .banner-section .row.align-items-center.min-vh-100 {
    min-height: 50vh !important;
  }

  /* Stack download buttons vertically on mobile */
  .download-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .download-buttons.download-buttons2 a {
    display: block;
    width: 100%;
    border: 1px solid #1c1c1c;
  }

  .download-buttons a {
    margin-bottom: 15px;
  }

  .download-buttons a.me-2 {
    margin-right: 0 !important;
  }

  .title2 {
    font-size: 14pt;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
  }

  .banner-section {
    background-image: url("assets/mobile-bg.jpeg");
    background-size: cover;
    background-position: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
  }
  .auth-section {
    padding: 0 !important;
  }

  .dashboard-heading {
    font-size: 24pt;
  }

  .dashboard-text {
    font-size: 14pt;
  }
  .logo.logo2 {
    height: 70px;
    margin-bottom: 0;
  }
  .dashboard-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.6rem !important;
  }
  .dashboard-text {
    /* font-size: 20pt; */
    font-family: "Poppins", sans-serif;
    font-weight: normal;
  }
  .screens-container {
    margin-bottom: 50px;
  }
  #signinForm button[type="submit"] {
    width: 100%;
  }
  #signupForm button[type="submit"] {
    width: 100%;
  }
  .download-btn {
    width: 100%;
  }
}
