  body {
    font-family: "Inter", sans-serif;
    background-color: #090b11;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }

  h2 {
    font-size: 37px;
  }

  .login-card {
    background-color: #11141c;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.3);
    padding: 2.5rem;
    color: white;
  }

  .form-control {
    background-color: #1b1f2a;
    border: 1px solid #333;
    color: white;
  }

  .form-control:focus {
    border-color: orangered;
    box-shadow: 0 0 0 0.2rem rgba(255, 69, 0, 0.25);
    background-color: #1b1f2a;
    color: white;
  }

  .btn-login {
    background-color: orangered;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px;
    border: none;
    transition: all 0.3s ease;
  }

  .btn-login:hover {
    background-color: white;
    color: #333;
  }

  .logo {
    width: 8rem;
    margin-bottom: 10px;
  }

  .link-small {
    font-size: 0.85rem;
    color: #ccc;
    text-decoration: none;
  }

  .link-small:hover {
    color: orangered;
  }