body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #102e44;
  margin: 0;
  padding: 0;
}

.mainWrp {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.mainIn {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  border-radius: 12px;
}

.pEnt {
  background-color: #212121;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
}

.video-player {
  text-align: center;
}

input[type="text"],
button {
  width: calc(75% - 10px);
  max-width: 400px;
  padding: 14px 20px;
  margin: 10px 5px;
  display: inline-block;
  border: 1px solid #444;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #333;
  color: #eee;
  font-size: 16px;
}

button {
  width: calc(25% - 10px); 
  background-color: #102e44;
  color: white;
  max-width: 120px;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

 button:hover {
  background-color: #059fdf;
} 


button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

button:hover span {
  transform: translateX(5em);
}

button:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

input[type="text"],
button {
  width: calc(75% - 10px); 
  max-width: 400px;
  padding: 14px 20px;
  margin: 10px 0; 
  display: inline-block;
  border: 1px solid #444;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #333;
  color: #eee;
  font-size: 16px;
}

button {
  width: calc(25% - 10px); 
  max-width: 120px;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex; 
  overflow: hidden;
  align-items: center; 
  justify-content: center; 
}

button .svg-wrapper {
  width: 24px; 
  height: 24px;
}

button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: transform 0.3s ease-in-out;
}

button span {
  margin-left: 8px; 
  transition: all 0.3s ease-in-out;
}

.player-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

#player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

h3 {
  color: #f5f7f8;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  /* font-weight: 800; */
  margin: 0 0 24px;
  text-transform: uppercase;
}

#footer {
  text-align: center;
  margin-top: 30px;
}

footer {
  font-size: 14px;
  margin: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  opacity: 0.8;
}
