

  .login-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    text-align: center;
    animation: fadeIn 0.8s ease-in-out;
    z-index: 9;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .login-box h2 {
    margin-bottom: 25px;
    color: #074898;
    font-weight: 600;
  }

  .form-label {
    font-weight: 500;
    color: #333;
  }

  .form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
  }

  .form-control:focus {
    border-color: #074898;
    box-shadow: 0 0 0 0.15rem rgba(7, 72, 152, 0.25);
  }

  .btn-primary {
    background-color: #074898;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #05386B;
  }

  .logo {
    margin-bottom: 20px;
    width: 140px;
  }

  .error-msg {
    color: red;
    margin-bottom: 15px;
    font-size: 14px;
  }
.input-with-icon {
  padding-left: 2.5rem !important;
}

.icon-inside {
  position: absolute;
  top: 38px;
  left: 10px;
  color: #074898;
  font-size: 1.2rem;
}

.login-box a:hover {
  text-decoration: underline;
  color: #05386B;
}
