body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .form-container {
    background-color: white;
    padding: 25px 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .form-container h2 {
    color: red;
    margin-bottom: 5px;
  }
  
  .decor-line {
    width: 50px;
    height: 2px;
    background: red;
    border: none;
    margin: 10px auto 20px;
  }
  
  form input,
  form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
  }
  
  form input:focus,
  form textarea:focus {
    border-color: #007bff;
  }
  
  form button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
  }
  
  form button:hover {
    background-color: darkred;
  }
  .button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  
  .button-group button,
  .button-group .back-button {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .button-group button {
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  .button-group button:hover {
    background-color: darkred;
  }
  
  .button-group .back-button {
    background-color: #ccc;
    color: black;
  }
  
  .button-group .back-button:hover {
    background-color: #aaa;
  }
    