body {
    font-family: Arial, sans-serif;
    background: #f4f6f7;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .login-container {
    width: 450px;
    margin: 80px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
  }
  
  .login-container h2 {
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #2c3e50;
  }
  
  .form-group input {
    width: 428px;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .login-btn {
    width: 100%;
    padding: 10px;
    background: #f39c12;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
  }
  
  .login-btn:hover {
    background: #e67e22;
  }
  
  .signup-text {
    margin-top: 15px;
    font-size: 14px;
  }
  
  .signup-text a {
    color: #f39c12;
    text-decoration: none;
  }
  
  .signup-text a:hover {
    text-decoration: underline;
  }