/* Common styles for logo and header text */
.logo-header {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 18px;
}
.logo-header img {
  height: 80px;
  margin-bottom: 10px;
}
.logo-header .main-title {
  color: #1769ff;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.logo-header .main-title .alt {
  color: #222;
  font-weight: 700;
}
.logo-header .subtitle {
  color: #555;
  font-size: 1.08rem;
  font-weight: 400;
  margin-top: 6px;
  margin-bottom: 0;
}
body, html { height: 100%; margin: 0; background: #f5f6fa; }
.split {
  height: 100vh;
  display: flex;
  flex-direction: row;
}
.left-panel {
  background: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px 0 rgba(0,0,0,0.08);
}
.right-panel {
  flex: 1;
  position: relative;
  background: url('uploads/bg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.overlay-logo img {
  height: 120px;
  margin-bottom: 20px;
}
.overlay-logo h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
}
.overlay-logo h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 2px 2px 8px #000;
  margin-top: 10px;
}
.form-control, .form-select {
  border-radius: 12px;
  font-size: 1.08rem;
  padding: 14px 18px;
  margin-bottom: 18px;
  background: #f5f8ff;
  border: 1.5px solid #eaf0ff;
  font-weight: 500;
}
.form-label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.btn-primary {
  background: #1769ff;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  padding: 12px 0;
  margin-bottom: 18px;
  border: none;
}
.btn-primary i {
  margin-right: 8px;
}
@media (max-width: 900px) {
  .split { flex-direction: column; }
  .right-panel { min-height: 300px; }
  .logo-header img { height: 60px; }
  .logo-header .main-title { font-size: 1.5rem; }
  .logo-header .subtitle { font-size: 0.95rem; }
}
