/* style.css */
body { margin: 0; overflow: hidden; }

/* style.css */
#login-button {
  background-color: #FF4444; /* Deriv's red color */
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  display: block;
  width: fit-content;
}

#login-button:hover {
  background-color: #E03D3D; /* Slightly darker red on hover */
}

#login-button:active {
  transform: translateY(1px);
}

/* Center the button on the page */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f5f5f5;
}
