* {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #e93737d7, #c5921b);
  }
  
  .container {
    background: linear-gradient(135deg, #ffffffcc, #f0f0f0cc);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
  }
  
  h2 {
    color: #333;
    margin-top: 0;
    text-align: center;
  }
  
  label {
    display: block;
    margin: 10px 0 5px;
    color: #444;
    font-weight: 500;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #74ebd5;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
  }
  
  input:focus {
    border-color: #4a90e2;
  }
  
  .button-group {
    text-align: center;
    margin-bottom: 20px;
  }
  
  button {
    background: linear-gradient(to left, #e93737d7, #c5921b);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    font-size: 14px;
    font-weight: bold;
  }
  
  button:hover {
    background: linear-gradient(to right, #5a67d8, #6b46c1);
    transform: scale(1.05);
  }
  
  p {
    font-size: 16px;
    text-align: center;
    color: #222;
    margin-top: 10px;
    font-weight: 500;
  }
  
  hr {
    border: none;
    border-top: 2px dashed #ccc;
    margin: 30px 0;
  }
  