    @keyframes bounce {
        0%, 100% { transform: translate(-50%, 0); }
        50% { transform: translate(-50%, -10px); }
    }
  /* ======================================== */
  
  body {
  background: linear-gradient(to bottom right, #004f9e, #f7941d1a);
  font-family: 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-container,  .register-container {
      max-width: 440px;
      width: 100%;
      background: #fff;
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      padding: 2rem 1.5rem 1.8rem;
      position: relative;
      top:1.5rem;
    }
.logo-wrapper {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  padding: 18px;
  border: 2px solid #f7941d;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  animation: bounce 2.5s infinite;
}
.logo-wrapper img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.form-title {
  margin-top: .8rem;
  font-size: 18px;
  color: #004f9e;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.welcome-msg {
  font-size: 14px;
  color: #666;
  margin-bottom: 1.5rem;
}

.form-control {
  padding-left: 48px !important;
  height: 48px;
  border: 1px solid #004f9e !important;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  border-radius: 5px;
}

.form-group {
  position: relative;
}

.form-group .bi {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004f9e;
  color: #fff;
  font-size: 1.1rem;
  z-index: 3;
  pointer-events: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px
}

.btn-style {
  background-color: #f7941d;
  border: none;
  font-weight: bold;
  border-radius: 0.5rem;
  height: 48px;
  transition: background 0.3s ease;
  position: relative;
  color: #fff;
}

.btn-style:hover {
  background-color: #e07b0a;
  color:#fff;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  display: none;
  vertical-align: middle;
  margin-right: 6px;
}

  .btn-loading .spinner-border {
  display: inline-block;
}
  .notice-box {
        background-color: #fff3cd;
        border-left: 5px solid #f7941d;
        padding: 10px 14px;
        margin-bottom: 15px;
        border-radius: 0.5rem;
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        font-weight: 500;
    }
.login-link {
  color: #004f9e;
  text-decoration: none;
  font-size: 14px;
}

.btn-icon {
  font-size: 1.3rem;
  margin-right: 6px;
  vertical-align: middle;
}

.form-check-label {
        font-size: 13px;
    }

.form-check-input:checked {
  background-color: #f7941d;
  border-color: #f7941d;
}

.forgot-link {
  font-size: 15px;
  color: #004f9e;
  cursor: pointer;
}

.forgot-link:hover {
  text-decoration: underline;
}
    .form-check-input {
        border: 2px solid #004f9e;
    }
    .login-link {
        color: #004f9e;
        text-decoration: none;
    }
    .btn-icon {
        font-size: 1.3rem;
        margin-right: 6px;
        vertical-align: middle;
    }