* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  body {
    background: linear-gradient(to right,#ff746c, #ffee8c);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .login-container {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  .login-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
  }
  
  .input-group {
    margin-bottom: 20px;
  }
  
  
  .input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s ease;
  }
  
  
  button {
    width: 100%;
    padding: 12px;
    background: #ff746c;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background: #ffee8c;
  }
  
  .signup-link {
    text-align: center;
    margin-top: 15px;
    color: #666;
  }
  
  .signup-link a {
    color: #ff746c;
    text-decoration: none;
  }