/* Reset default styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #f4f4f9; /* Light gray background */
  color: #333; /* Dark text */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center container */
.container {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff; /* White background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  width: 400px; /* Fixed width */
}

/* Header styles */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.logo {
  height: 50px;
  width: auto;
  margin-right: 15px;
}

.title {
  font-size: 24px;
  font-weight: bold;
  color: #4a90e2; /* Blue accent */
  margin: 0;
}

/* Main content styles */
.main {
  margin-top: 20px;
}

.dashboard-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #4a90e2; /* Blue button */
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}

.dashboard-button:hover {
  background-color: #3a78c2; /* Darker blue on hover */
  transform: scale(1.05);
}
