.full-container {
  height: 100vh;
  width: 100vw;
}

.login-card {
  height: 100vh;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex;
  flex-direction: row;
}

.login-image {
  width: 65%;
}

.login-form-container {
  width: 35%;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  background-color: #efe2cc;
}

.form-floating-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.floating-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #a1a1a1;
  background-color: #fff9ef;
}

.floating-label {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  transition: 0.2s ease all;
  pointer-events: none;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
  top: -0.25rem;
  left: 3rem;
  font-size: 1rem;
  color: #4e6b54;
  background-color: #efe2cc;
  padding: 0 0.25rem;
}

.btn-login {
  background-color: #4e6b54;
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
}

.btn-login:hover {
  background-color: #689969;
}

.system-title {
  color: #4e6b54;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.login-subtitle {
  color: #4e6b54;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

/* --- Partners footer on login --- */
.login-footer { margin-top: auto; }
.support-footer {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px dashed #c7b090;
}
.support-footer .unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  flex: 1 1 0;
}
.support-footer .unit-title {
  font-size: 0.85rem;
  color: #4e6b54;
  font-weight: 600;
}
.support-footer .unit .unit-logo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: none;
}
@media (max-width: 992px) {
  .support-footer {
    flex-direction: column;
    gap: 0.75rem;
  }
  .support-footer .unit .unit-logo {
    max-height: 36px;
  }
}

/* --- FPT devline footer (logo left, text right) --- */
.fpt-devline{
  display:flex;
  align-items:center;
  gap:.75rem;
  justify-content:center;
  padding:.5rem 0;
}
.fpt-logo{ max-height:60px; width:auto; object-fit:contain; }

.fpt-divider{
  width:1px;
  height:60px;
  background:rgba(0,0,0,0.2);
  display:inline-block;
}

.fpt-text{ display:flex; flex-direction:column; line-height:1.2; align-items: center;}
.fpt-text-line1{ font-size:.95rem; color:#6b7280; /* gray-500 */ }
.fpt-text-line2{ font-size:.95rem; color:#1d4ed8; /* blue-700 */ font-weight:600; }

@media (max-width: 576px){
  .fpt-devline{ flex-direction:column; gap:.4rem; }
  .fpt-divider{ display:none; }
  .fpt-logo{ max-height:34px; }
}
