/* /public/assets/css/onboarding.css */

.onboarding-page {
  background-color: #fdfcff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  padding: 20px;
}

.onboarding-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(136, 51, 255, 0.1);
  padding: 40px 60px;
  width: 100%;
  max-width: 700px;
  transition: all 0.3s ease-in-out;
}

.question-wrapper {
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.question-content {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  flex-grow: 1;
}

.question-content.fade-out {
    opacity: 0;
}

.question-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.question-number {
  color: #8833FF;
  font-size: 1.5rem;
  font-weight: 700;
}

.question-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.question-description {
  color: #777;
  font-size: 1rem;
  margin-bottom: 40px;
  min-height: 2em;
}

.input-container {
  margin-bottom: 30px;
}

.onboarding-textbox {
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: transparent;
  transition: border-color 0.3s;
  color: #333;
  font-family: 'Raleway', sans-serif;
}

.onboarding-textbox:focus {
  outline: none;
  border-bottom-color: #8833FF;
}

.onboarding-select {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    font-family: 'Raleway', sans-serif;
}

.onboarding-select:focus {
    outline: none;
    border-color: #8833FF;
}

.multiple-choice-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.multiple-choice-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.multiple-choice-option:hover {
    border-color: #c0c0c0;
}

.multiple-choice-option.selected {
  border-color: #8833FF;
  background-color: #f4eaff;
  box-shadow: 0 4px 15px rgba(136, 51, 255, 0.15);
}

.multiple-choice-key {
  border: 2px solid #bbaaff;
  color: #8833FF;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.2s ease-in-out;
}

.multiple-choice-option.selected .multiple-choice-key {
    background-color: #8833FF;
    color: #fff;
    border-color: #8833FF;
}

.onboarding-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.onboarding-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: #8833FF;
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
    background-color: #7a2ee6;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.btn-secondary {
    background-color: transparent;
    color: #777;
    font-weight: 500;
}

.btn-secondary:hover {
    color: #333;
}

.other-input-container {
    margin-top: 15px;
} 