@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #242333;
  color: #fff;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 0;
}

h1 {
  margin-bottom: 20px;
}

.user-auth {
  margin-bottom: 20px;
}

.user-auth input,
.movie-container input,
.movie-container select {
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  font-family: inherit;
  margin-right: 10px;
}

.user-auth button,
.movie-container button,
#confirmBtn {
  background-color: #6feaf6;
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.user-auth button:hover,
.movie-container button:hover,
#confirmBtn:hover {
  background-color: #4dd3e0;
}

#welcomeMsg {
  margin-top: 10px;
  font-weight: bold;
  color: #6feaf6;
}

.hidden {
  display: none;
}

.movie-container {
  margin-bottom: 20px;
}

.movie-container label {
  margin-right: 5px;
}

.container {
  perspective: 1000px;
  margin-bottom: 30px;
}

.seat {
  background-color: #444451;
  height: 25px;
  width: 30px;
  margin: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.seat.vip {
  background-color: #b482ff;
}

.seat.selected {
  background-color: #6feaf6;
}

.seat.occupied {
  background-color: #999;
  cursor: not-allowed;
}

.seat:not(.occupied):hover {
  transform: scale(1.2);
}

.showcase {
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  color: #777;
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.showcase li {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.showcase li small {
  margin-left: 5px;
}

.row {
  display: flex;
  justify-content: center;
}

.screen {
  background-color: #fff;
  height: 70px;
  width: 100%;
  margin: 15px 0;
  transform: rotateX(-45deg);
  box-shadow: 0 3px 10px rgba(255, 255, 255, 0.7);
}

p.text {
  margin: 5px 0;
}

.promo-message {
  margin-top: 5px;
  font-weight: bold;
  color: #6feaf6;
}

.summary {
  margin-top: 20px;
  background-color: #333;
  padding: 15px;
  border-radius: 10px;
  width: 320px;
  text-align: left;
}

@media (max-width: 600px) {
  .row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .seat {
    width: 25px;
    height: 20px;
    margin: 3px;
  }
  .movie-container select,
  .movie-container input {
    width: 100%;
    margin-bottom: 10px;
  }
}
