/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .login-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .login-form label {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #333;
  }
  
  .login-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-form button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem;
    background-color: #ff4465;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .login-form button:hover {
    background-color: #e13b5a;
  }
  
  .signup-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  
  .signup-link a {
    color: #25ccf7;
    text-decoration: none;
  }
  
  .signup-link a:hover {
    text-decoration: underline;
  }
  