body, button, input {
  font-family: 'Roboto', sans-serif;
}

body header#header {
  background-color: rgb(255, 255, 255) !important;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

#buttons {
  display: flex;
  gap: 10px;
}

#logo-and-title {
  display: flex;
  align-items: center;
}

#company-logo {
  height: 40px;
  width: auto;
}

#title {
  font-size: 40px;
  margin-left: 5px;
}

#gem {
  color: rgb(2, 145, 85);
  font-weight: 600;
  font-size: 90%;
}

#valut {
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 90%;
}

#main-container {
  background-image: url('pic.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 20px;
}

.form-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid #f1f1f1;
  z-index: 9;
  background-color: grey;
  padding: 20px;
  width: 300px;
  text-align: center;
}

.message-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 10px solid #f1f1f1;
  z-index: 9;
  background-color: rgb(0, 0, 0);
  padding: 10px;
  width: 400px;
  text-align: center;
  color: white;
}

#login-button {
  background-color: rgb(0, 0, 0) !important;
  color: white !important;
  border-color: #FEF8EE;
}

#signup-button {
  background-color: rgb(0, 99, 69) !important;
  color: white !important;
  border-color: #FEF8EE;
}

/* Add this to the end of your existing CSS */
@media screen and (max-width: 1180px) {
  body header#header  {
    flex-direction: column ;
    justify-content: center ;
    align-items: center ;
    height: 200px;
  }

  #buttons {
    flex-direction: column;
    width: 100%;
    gap: 11px

  }

  #login-button, #signup-button {
    width: 100%;
    text-align: center;
  }
}
