body, html {
    height: 100%;
    background: linear-gradient(135deg, #ababaa 85%, #655f5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4b3621;
  }
  /* Login box styling */
  .login-box {
    width: 100%;
    max-width: 380px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 16px;
    text-align: center;
    border-top: 5px solid #060606;
  }
  .login-logo img {
    width: 100px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
  }
  .login-text {
    font-size: 1.25rem;
    color: #6b4f3a;
    margin-bottom: 1.5rem;
  }
  /* Input and Button Styling */
  .form-control {
    border-radius: 8px;
    border-color: #e0a899;
    padding: 0.75rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .form-control:focus {
    border-color: #ff7e5f;
    box-shadow: 0 0 5px rgba(255, 94, 51, 0.3);
  }
  .btn-custom {
    background-color: #655f5f;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-custom:hover {
    background-color: #ababaa;
  }