body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-family: sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  margin-left: 350px;
  margin-right: 50px;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.background {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}


.login-box {
  margin-right: 210px;
  width: 340px;
  height: 460px;
  background-color: #F2F2F2;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 66%;
  height: auto;
  margin-bottom: 40px;
}

.login-button {
  margin-top: 20px;
  font-weight: bold;
  color: white;
  font-size: 16px;
  background-color: #4285F4;
  border: none;
  border-radius: 6px;
  width: 200px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#footer {
  display: none;
}

.login-button:hover {
  background-color: #4285F4e7;
}

.hidden {
  display: none;
}

@media (max-width: 1024px) {
  .container {
    margin: 0 auto;
    width:320px;
    
  }

  .login-box {
    margin-right: 0;
    width:300px;
    height: 440px;
  }
}

@media (max-width: 480px) {
  .login-box {
    width: 90%;
    padding: 16px;
  }
}
