/* 驗證方式選擇樣式 */
.verification-method-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.verification-method-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: white;
  min-height: 120px;
}

.verification-method-option:hover {
  border-color: #FC3130;
  background: #fff5f5;
}

.verification-method-option.active {
  border-color: #FC3130;
  background: #fff5f5;
}

.verification-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.verification-method-icon svg {
  width: 40px;
  height: 40px;
}

.verification-method-content {
  text-align: center;
  width: 100%;
}

.verification-method-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.verification-method-subtitle {
  font-size: 13px;
  color: #666;
}

.verification-method-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FC3130;
  color: white;
  display: none; /* 預設隱藏 */
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.verification-method-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.verification-method-option.active .verification-method-check {
  display: flex; /* 選中時顯示 */
}

/* 響應式設計 */
@media (max-width: 480px) {
  .verification-method-group {
    gap: 10px;
  }
  
  .verification-method-option {
    padding: 16px 12px;
    min-height: 110px;
  }
  
  .verification-method-icon {
    width: 40px;
    height: 40px;
  }
  
  .verification-method-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .verification-method-title {
    font-size: 15px;
  }
  
  .verification-method-subtitle {
    font-size: 12px;
  }
  
  .verification-method-check {
    width: 22px;
    height: 22px;
    top: 10px;
    right: 10px;
  }
}

