@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: 2;
  padding: 80px 100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%), url("/o2b_extend_support_web/static/src/img/increase.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  box-shadow: 8px 0 15px rgba(0, 0, 0, 0.15);
}

.left-section h1 {
  color: #00a7e4;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 30px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.left-section .subtitle {
  color: #0077c7;
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 950px;
  margin-bottom: 45px;
  line-height: 1.5;
}

.help-title {
  color: #005691;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 2rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  gap: 12px 30px;
}

.app-card {
  background: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 14px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none !important;
  height: 80px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.app-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.app-content img {
  height: 75px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

.info-icon {
  color: #00a9e0;
  font-size: 1.2rem;
  margin-left: 15px;
}

.right-section {
  flex: 0.8;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.login-container {
  width: 100%;
  max-width: 380px;
}

.logo-box {
  text-align: center;
  margin-top: -60px;
  margin-bottom: 60px;
}

.logo-img {
  width: 240px;
}

.sign-in-header {
  font-weight: 900;
  font-size: 2rem;
  color: #212529;
  margin-bottom: 35px;
  font-family: 'Nunito Sans', sans-serif;
}

.form-group label {
  font-size: 0.95rem;
  color: #50565c;
  margin-bottom: 10px;
  font-weight: 600;
}

.input-styled {
  background-color: #f0f7ff !important;
  border: 1px solid #d0e3ff !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  height: 52px !important;
  font-size: 1rem;
}

.forgot-password {
  float: right;
  font-size: 0.85rem;
  color: #007bff;
  font-weight: 700;
}

.btn-signin {
  background-color: #2eb0e4;
  border: none;
  border-radius: 10px;
  color: white;
  padding: 14px 40px;
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 20px;
  width: 100%;
  box-shadow: 0 5px 10px rgba(46, 176, 228, 0.3);
}

.footer-copyright {
  position: absolute;
  bottom: 20px;
  font-size: 12px;
  color: #bbb;
}

@media (max-width: 1400px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
  }
  .left-section h1 { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
  .main-wrapper { flex-direction: column; }
  .left-section, .right-section { flex: none; width: 100%; }
  .left-section h1 { font-size: 3rem; }
  .app-grid { grid-template-columns: 1fr; max-width: 450px; }
  .logo-box { margin-top: 0; }
}