body {
  font-family: 'Arima', 'Poppins', Helvetica, 'Raleway';
}

.bg-midnight {
  background-color: rgba(4, 31, 44, 0.8);
}

.bg-message {
  background-color: rgba(12, 66, 89, 1);
}

.text-message {
  color: rgba(23, 80, 104, 1);
}

.text-form {
  color: rgba(38, 89, 110, 1);
}

.border-form {
  border-color: rgba(38, 89, 110, 1);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.welcome-content {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.welcome-content input {
  padding: 5px 10px;
  width: 100%;
  margin: 10px 0;
  border: 1px solid rgb(33, 33, 51);
  border-radius: 5px;
}

.welcome-content button {
  padding: 8px 16px;
  width: 100%;
  cursor: pointer;
  font-weight: 500;
  color: rgb(255, 255, 255);
  background-color: rgb(57, 104, 145);
  border-radius: 8px;
}

.welcome-content button:hover {
  background-color: rgb(189, 215, 238);
  color: midnightblue;
}
