@import url('https://fonts.googleapis.com/css?family=Montserrat');


html, body {
  height: 100vh;
  
}

body {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 18px;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: flex-start; /* Start at top */
  padding-top: 10vh; /* 10% of viewport height */
  box-sizing: border-box;
  background: #f2f2f2;
    }

    .content {
  text-align: center;
  max-width: 700px;
  min-height: 700px;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
  margin: 0 auto;
}

img.brand{ max-width:50% }