/* Reset & base styles */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Roboto, RobotoDraft, Helvetica, Arial, sans-serif;
  background-color: white;
}

/* Flex container for centering */
.container {
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center; /* Vertical center */
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

/* Centered content box */
.content {
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
}

.title {
  color: #000000;
  font-size: 24px;
}
.desc {
  margin-top: 15px;
  font-size: 16px;
  color: #7a7a7a;
}
.button {
  height: 50px;
  padding: 0 20px;
  margin-top: 25px;
  font-size: 18px;
  text-align: center;
  color: #4bc3ff;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2),
    2px 1px 4px 0 rgba(0, 0, 0, 0.19);
  border-radius: 4px;
}
.logo {
  height: 60px;
  width: 60px;
  margin: 10px 15px;
}
.console {
  font-size: 11px;
  margin-top: 20px;
  color: #aeaeae;
}

/* Responsive font size and padding for smaller screens */
@media (max-width: 600px) {
  .content {
    padding: 10px 30px;
  }
  .title {
    font-size: 20px;
  }
  .desc {
    font-size: 14px;
  }
}
