/* style/register-login-new-user-tutorial.css */
.page-register-login-new-user-tutorial {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-register-login-new-user-tutorial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-new-user-tutorial-hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-register-login-new-user-tutorial-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.page-register-login-new-user-tutorial-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-register-login-new-user-tutorial-section {
  padding: 60px 0;
}

.page-register-login-new-user-tutorial-bg-light {
  background-color: #e9ecef;
}

.page-register-login-new-user-tutorial-section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-register-login-new-user-tutorial-section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-register-login-new-user-tutorial-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-register-login-new-user-tutorial-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-register-login-new-user-tutorial-list-ordered {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-register-login-new-user-tutorial-list-ordered li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-register-login-new-user-tutorial-step {
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login-new-user-tutorial-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-register-login-new-user-tutorial-step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 10px;
}

.page-register-login-new-user-tutorial-step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-register-login-new-user-tutorial-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-align: center;
  margin-top: 15px;
}

.page-register-login-new-user-tutorial-btn-primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-register-login-new-user-tutorial-btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-register-login-new-user-tutorial-btn-secondary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-register-login-new-user-tutorial-btn-secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-register-login-new-user-tutorial-btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-register-login-new-user-tutorial-cta-final {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-register-login-new-user-tutorial-cta-final .page-register-login-new-user-tutorial-section-title {
  color: #fff;
}

.page-register-login-new-user-tutorial-cta-final .page-register-login-new-user-tutorial-section-title::after {
  background-color: #fff;
}

.page-register-login-new-user-tutorial-cta-final p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-register-login-new-user-tutorial-title {
    font-size: 2em;
  }
  .page-register-login-new-user-tutorial-subtitle {
    font-size: 1em;
  }
  .page-register-login-new-user-tutorial-section-title {
    font-size: 1.6em;
  }
  .page-register-login-new-user-tutorial-step-title {
    font-size: 1.4em;
  }
  .page-register-login-new-user-tutorial-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-register-login-new-user-tutorial-btn-large {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-register-login-new-user-tutorial-title {
    font-size: 1.8em;
  }
  .page-register-login-new-user-tutorial-subtitle {
    font-size: 0.9em;
  }
  .page-register-login-new-user-tutorial-section {
    padding: 40px 0;
  }
  .page-register-login-new-user-tutorial-step {
    padding: 20px;
  }
  .page-register-login-new-user-tutorial-list li {
    padding-left: 25px;
    background-size: 18px;
  }
  .page-register-login-new-user-tutorial-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-register-login-new-user-tutorial-btn-large {
    width: auto;
  }
}