 body {
    
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f0f2f5;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
    }

    form {
      width: 100%;
      max-width: 480px;
    
      

    }

  

    fieldset {
      background-color: #fff;
      padding:1px 30px;
      border: 2px solid #f3f5f8;
      border-radius: 15px;
      margin-top:10px;
      }

    legend {
      font-size: 1.6em;
      font-weight: bold;
      color: #333;
      padding:5px;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: 600;
      color: #333;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1rem;
    }

    textarea {
      resize: none;
      height: 60px;
    }

    input[type="checkbox"] {
      margin-top: 15px;
      margin-right: 8px;
    }

    .buttons {
      margin-top: 20px;
    }

    button {
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      background-color: #3186e7;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      margin-right: 10px;
      transition: background-color 0.2s;
    }

    button[type="reset"] {
      background-color: #e93838;
    }

    button:hover {
      opacity: 0.9;
      
    }
    .page{
       background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 360px;

    }


   