body, html {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  color: white;
  text-align: center;
}

#app {
  padding-top: 60px;
}

.redirect-button, .home-button, .login-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.3s;
}

.redirect-button {
  position: fixed;
  top: 20px;
  right: 20px;
}

.home-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #666;
}

.redirect-button:hover,
.login-button:hover {
  background-color: #45a049;
}

.home-button:hover {
  background-color: #777;
}

.login-form {
  background-color: #111;
  margin: 2% auto;
  padding: 2%;
  width: 40%;
  border-radius: 10px;
}

input[type="text"],
input[type="password"] {
  padding: 8px;
  width: 80%;
  border-radius: 5px;
  border: none;
  margin-top: 5px;
}

.microsoft-signin-button {
  display: inline-flex;
  align-items: center;
  background-color: white;
  color: #2F2F2F;
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.microsoft-signin-button:hover {
  background-color: #e6e6e6;
}

.microsoft-signin-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.main-visual {
  width: 70vw;      
  height: 80vh;
  object-fit: contain;
}
