body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url("src/img/Back.png");
  background-size: cover;
  color: rgb(212, 177, 108);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  width: 100%;
  overflow: hidden;
}

h1 {
  margin: 20px 0;
  font-size: 24px;
  font-family: "Manrope", Arial, sans-serif;
}

.carousel {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  overflow: hidden;
  max-width: 400px;
  font-family: "Manrope", Arial, sans-serif;
  width: 100%;
}

.card {
  width: 374px;
  margin: 0 10px;
  border: 2px solid rgb(212, 177, 108);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: transparent;
  font-family: "Manrope", Arial, sans-serif;
}

.card__content {
  padding: 20px;
  text-align: center;
}

.card__content-title {
  font-size: 30px;
  font-weight: bold;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  margin: 0;
}

.card__content-button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid rgb(212, 177, 108);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: "Manrope", Arial, sans-serif;
}

.card__content-button:hover,
.card__content-button:focus {
  background-color: rgb(212, 177, 108);
  color: black;
}

.hint {
  color: rgb(212, 177, 108);
  text-align: center;
  margin-top: 10px;
}

.logo {
  width: 150px;
  background-image: url("src/img/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 50px;
}

.card__number {
  margin-top: 5px;
  font-weight: bold;
  font-size: 16px;
  align-items: center;
  color: rgb(212, 177, 108);
}

.card__arrows {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.arrow {
  font-size: 48px;
  color: rgb(212, 177, 108);
  cursor: pointer;
  transition: color 0.3s;
}

.arrow:hover {
  color: white;
}

.card:first-child .left-arrow {
  visibility: hidden;
}

.card:last-child .right-arrow {
  visibility: hidden;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-57%, -50%);
  width: 300px;
  background-color: rgba(18, 18, 18, 1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.modal-content {
  background-color: #121212;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
}

.modal-content h2 {
  margin: 0 0 15px;
}

.modal-content input[type="password"] {
  padding: 10px;
  width: 80%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.modal-content button {
  padding: 10px 15px;
  margin: 5px;
  border: rgb(212, 177, 108);
  border-radius: 4px;
  background-color: black;
  color: rgb(212, 177, 108);
  cursor: pointer;
}

.modal-content button.modal-button {
  display: block;
  width: calc(100% - 20px);
  padding: 10px;
  margin: 5px auto;
  border: 1px solid rgb(212, 177, 108);
  border-radius: 4px;
  background-color: black;
  color: rgb(212, 177, 108);
  cursor: pointer;
}

.modal-content button:hover {
  background-color: rgb(212, 177, 108);
  color: black;
}

#search-container {
  width: 100%;
  display: flex;
  margin: 10px 0;
}

#searchInput {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  border: 2px solid rgb(212, 177, 108);
  border-radius: 5px;
  background-color: transparent;
  color: rgb(212, 177, 108);
  font-family: "Manrope", Arial, sans-serif;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, color 0.3s;
}

#searchInput::placeholder {
  color: rgba(212, 177, 108);
}

#searchInput:focus {
  outline: none;
  background-color: rgba(212, 177, 108, 0.7);
  color: rgb(0, 0, 0);
}
