body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  min-height: 100vh;
  background-color: black;
  color: white;
  font-family: 'Roboto', sans-serif;
  overflow: hidden; /* Prevent scrolling */
}

.container {
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100vh; /* Make container fill the screen height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically within container */
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

.logo img {
  width: auto; /* Ensure image maintains aspect ratio */
  height: 75px;
  flex-shrink: 0;
  margin-left: 10px;
}

.vertical-line {
  width: 2px;
  margin-left: 50px;
  height: 61px;
  background-color: white;
}

.logo h1 {
  color: #FFF;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-left: 30px;
}

.title {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
  color: #FFF;
  font-family: Roboto;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 40px;
}

.message {
  width: 100%;
  max-width: 285px;
  margin: 0 auto 20px;
  color: #D0D0D0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(14px, 3.5vw, 17px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 31px;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-direction: column;
  
  gap: 15px;
  width: 100%;
}

.button {
  padding: 15px 0;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  border: 2px solid white;
  border-radius: 20px;
  text-align: center;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  background: transparent;
  color: white;
  transition: background-color 0.3s, color 0.3s;
  font-family: 'Roboto', sans-serif;
  margin-top: 20px;
}

.button:hover {
  background-color: white;
  color: black;
}

.button:active {
  transform: scale(0.95);
}
