/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}

/* Subtle gradient from white to light accent */
body {
  background: linear-gradient(135deg, #FFFFFF 0%, #9BCCE0 100%);
}

/* Centered container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 1rem;
}

/* Logo styling */
.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Heading styling */
h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #00A3DE; /* Primary blue */
}
