body {
    background: linear-gradient(to right, #f3e5f5, #ffffff);
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .login-container {
    width: 100%;
    max-width: 420px;
    height: auto;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 12px;
  }
  

.btn-custom {
    background-color: #6a1b9a;
    color: white;
    border: none;
  }
  .btn-custom:hover {
    background-color: #4a148c;
  }

  .login-container {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
  }

  .login-header .brand {
    font-size: 28px;
    color: #6a1b9a;
    text-align: center;
    margin-bottom: 10px;
  }

  .login-header small {
    display: block;
    font-size: 14px;
    color: #888;
    text-align: center;
  }

  .form-group label {
    font-weight: 600;
    color: #333;
  }

  .btn-custom {
    background-color: #6a1b9a;
    color: white;
    border: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .btn-custom:hover {
    background-color: #4a148c;
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.3);
  }

  .alert {
    margin-top: 10px;
  }

  .text-purple {
    color: #6a1b9a;
  }