body {
    background: linear-gradient(to bottom, #f5f5f5, #e0e0e0, #f5f5f5);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .register {
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Adjust box shadow for floating effect */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  form {
    width: 100%;
    max-width: 300px; /* Set max width for the form box */
  }
  
  .form__field {
    margin-bottom: 1rem;
  }
  
  input[type="email"],
  input[type="password"],
  input[type="submit"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }