@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

body,
html {
  height: 100%;
  margin: 0;
   font-family: "Roboto", sans-serif !important;
  background-color: #fff;
  overflow-x: hidden;
}

.main-wrapper {
  display: flex;
  min-height: 100vh;
}

.left-section {
  flex: 1.6;
  padding: 80px 80px;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("./increase.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;

  /* Shadow on the RIGHT edge (between left and right sections) */
  box-shadow: 5px 0 10px 1px rgba(0, 0, 0, 0.276);
}

.left-section h1 {
  color: #00a7e4;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.left-section .subtitle {
  color: #0077c7;
  font-size: 0.84rem;
  font-weight: 400;
  max-width: 700px;
  margin-bottom: 40px;
}

.help-title {
  color: #005691;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 260px);
  gap: 10px 25px;
}

.app-card {
  background: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  text-decoration: none !important;
  min-height: 58px;
  height: 60px;
  transition: box-shadow 0.15s;
}

.app-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.app-content img {
  height: 50px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.info-icon {
  color: #00a9e0;
  font-size: 0.6rem;
  margin-left: 10px;
}

.right-section {
  flex: 0.7;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;

  /* Remove border so the shadow is clearly visible */
  border-left: none;
}

.login-container {
  width: 100%;
  max-width: 340px;
}

.logo-box {
  text-align: center;
  margin-bottom: 20px;
}

.logo-img {
  width: 180px;
}

.sign-in-header {
  font-weight: 900;
  font-size: 1.4rem;
  color: #212529;
  margin-bottom: 25px;
    font-family: 'Nunito Sans', sans-serif;
}

.form-group label {
  font-size: 0.8rem;
  color: #50565c;
  margin-bottom: 6px;
  font-weight: 500;
}

.input-styled {
  background-color: #e8f0fe !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 15px !important;
  height: 42px !important;
  font-size: 0.85rem;
}

.forgot-password {
  float: right;
  font-size: 0.75rem;
  color: #007bff;
  font-weight: 600;
}

.button-wrapper {
  display: flex;
  justify-content: center; /* Centers the button horizontally */
  width: 100%;
}

.btn-signin {
  background-color: #2eb0e4;
  border: none;
  border-radius: 8px;
  color: white;
  padding: 10px 25px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(46, 176, 228, 0.2);
}

.footer-copyright {
  position: absolute;
  bottom: 15px;
  font-size: 10px;
  color: #ccc;
}

@media (max-width: 1200px) {
  .left-section {
    padding: 60px 50px;
  }
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 1024px) {
  .main-wrapper {
    flex-direction: row;
  }
  .left-section h1 {
    font-size: 2.2rem;
  }
  .app-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .right-section {
    flex: 1;
  }
}

@media (max-width: 820px) {
  .main-wrapper {
    flex-direction: column;
  }
  .left-section {
    flex: none;
    padding: 40px 30px;
    background: #fff;
  }
  .right-section {
    flex: none;
    padding: 40px 20px;
    border-left: none;
    border-top: 1px solid #f0f2f5;
  }
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 10px;
  }
  .footer-copyright {
    position: relative;
    bottom: 0;
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .left-section h1 {
    font-size: 1.8rem;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .logo-img {
    width: 140px;
  }
  .login-container {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .main-wrapper {
    flex-direction: column;
  }
  .left-section {
    padding: 40px 20px;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
}
