/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(140deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 45%, rgba(0, 212, 255, 1) 100%);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
  
  /* Container Box */
  .container {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;  
    padding: 30px 40px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Heading */
  .container h2 {
    text-align: center;
    color: #0072ff;
    margin-bottom: 25px;
    font-size: 24px;
  }
  
  /* Labels and Inputs */
  label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
  }
  
  input[type="text"],
  input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    transition: 0.3s ease;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus {
    border-color: #0072ff;
    outline: none;
  }
  
  /* Button */
  button {
    width: 100%;
    padding: 12px;
    background-color: #0072ff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #005fcc;
  }
  
  /* Message Output */
  .message {
    margin-top: 15px;
    text-align: center;
    color: red;
    font-size: 14px;
  }
  
  /* Responsive Design */
@media (max-width: 480px) {
    body {
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
  
    .container {
      width: 100%;
      max-width: 360px;
      height: auto;
      padding: 25px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
  
    .container h2 {
      font-size: 20px;
      margin-bottom: 20px;
    }
  
    input,
    button {
      font-size: 14px;
      padding: 10px;
    }
  
    label {
      font-size: 14px;
    }
  
    .message {
      font-size: 13px;
    }
  }
  