/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    /* background: linear-gradient(135deg, #6a11cb, #2575fc); */
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 10px;
  }
  
  /* Header Styling */
  header {
    text-align: center;
    margin-bottom: 20px;
  }


  
  /* Main Section */
  section#main {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
  }
  
  section#main h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
  }
  
  .login-img{
    width: 15rem;
    margin: auto;
  }

  .login-img img{
    width: 100%;
  }

  /* Form Styling */
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  form div {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  form input:focus {
    outline: none;
    border-color: #6a11cb;
    box-shadow: 0 0 5px rgba(106, 17, 203, 0.5);
  }
  
  /* Button Styling */
  form button {
    padding: 10px;
    font-size: 1.2rem;
    color: #fff;
    background: #002855;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
  }
  
  form button:active {
    transform: scale(0.98);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    section#main {
      padding: 15px 20px;
    }
  
    form button {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    header h1 {
      font-size: 2rem;
    }
  
    section#main {
      padding: 10px;
    }
  
    form input,
    form button {
      font-size: 0.9rem;
    }
  }
  