/* style.css */

/* General styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background-color: #1a1b1e;
  color: #dcddde;
  min-height: 100vh;
  display: flex;
  flex-direction: column; /* Allows for proper layout */
  margin: 0;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
}

/* Main content styles */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  padding: 2rem;
  box-sizing: border-box;
  text-align: center; /* Center text alignment */
}

.content-wrapper {
  position: relative;
  border: 1px solid rgb(255, 169, 77);
  width: 100%;
  max-width: 42rem;
  padding: 2.5rem;
  background-color: #25262b;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.content-wrapper h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #c3c5c8;
}

/* Form styles */
#downloadForm {
  margin-top: 1.5rem;
}

#downloadForm input,
#downloadForm select {
  width: 100%;
  padding: 0.75rem;
  background-color: #40444b;
  border: 1px solid #4f545c;
  border-radius: 0.25rem;
  color: #dcddde;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}

#downloadForm input:focus,
#downloadForm select:focus {
  outline: none;
  border-color: #7289da;
  box-shadow: 0 0 0 2px rgba(114, 137, 218, 0.3);
}

/* Fix for contact form text alignment */
.contact-form-group input,
.contact-form-group textarea {
  text-align: left !important;
}

/* Message styles */
#message,
#timer {
  font-size: 0.9375rem;
  margin-top: 1rem;
}

#timer {
  font-weight: bold;
  color: #43b581;
}

/* Additional styles can be added as necessary, replicating what is needed from youtube.css */

/* Responsive adjustments */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  .main-content {
    padding: 1rem;
  }
  .content-wrapper {
    padding: 1.5rem;
  }
}

