* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #2980b9, #6dd5fa);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
  }
  
  .login-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.3s;
  }
  
  input:focus {
    border-color: #2980b9;
    outline: none;
    box-shadow: 0 0 5px #2980b9;
  }
  
  button {
    width: 100%;
    padding: 0.75rem;
    background-color: #2980b9;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #2471a3;
  }
  
  .extra-links {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: flex-end;
  }
  
  .extra-links a {
    color: #2980b9;
    text-decoration: none;
  }
  
  .extra-links a:hover {
    text-decoration: underline;
  }
  
  .center-link {
    justify-content: center;
    margin-top: 1rem;
  }
  