    :root {
      --primary-color: #131185; 
      --secondary-color: white
    }

    .container {
      padding: 2rem;
    }

    .login-container {
      max-width: 26rem;
      margin: auto;
      padding: 30px;
      background-color: var(--secondary-color);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    .login-header {
      text-align: center;
      margin-bottom: 30px;
    }
    .login-header i {
      font-size: 50px;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    .form-floating {
      margin-bottom: 20px;
    }
    .btn-login {
      width: 100%;
      padding: 12px;
      font-weight: 600;
    }
    .forgot-password {
      text-align: right;
      margin-top: 10px;
    }
    .divider {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px solid var(--secondary-color);
    }
    .divider-text {
      padding: 0 10px;
      color: #6c757d;
      font-size: 14px;
    }

    .text-black {
      color: black !important;
    }

    .text-red {
      color: red !important;
    }