select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d7de;
    border-radius: 10px;
    font-size: 15px;
    background-color: #fff;
    color: #333;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20'%3E%3Cpath fill='%23666' d='M5 7l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;

    transition: all 0.2s ease;
}

select:hover {
    border-color: #1f3b57;
}

select:focus {
    outline: none;
    border-color: #1f3b57;
    box-shadow: 0 0 0 3px rgba(31, 59, 87, 0.15);
}

.phone-group {
    display: flex;
    align-items: center;
}

.phone-group span {
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-right: 0;
    padding: 12px;
    border-radius: 6px 0 0 6px;
    font-weight: bold;
}

.phone-group input {
    border-radius: 0 6px 6px 0;
}

/* Varsayılan tarayıcı checkbox'ını gizle */
.custom-checkbox input {
  display: none;
}

/* Kapsayıcı label etiketi tasarımı */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 16px;
}

/* Kendi özel onay kutumuz */
.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

/* İşaretleme (Check) ikonu */
.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Checkbox seçildiğinde (checked) arkaplanı ve ikonu değiştir */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #28a745;
  border-color: #28a745;
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    line-height: 1.5;
    font-weight: normal;
}

.checkbox-group a {
    color: #1f3b57;
    font-weight: 600;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

#kvkkMetni {
  margin-top: 12px;
  padding: 15px;
  border: 1px solid #d0d7de;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 14px;
  line-height: 1.5;
  max-height: 250px;
  overflow-y: auto;
}

#kvkkMetni {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    max-height: 250px;
    overflow-y: auto;
}

#kvkkMetni h3 {
    margin-top: 0;
}

.checkbox-group a {
    color: #1f3b57;
    font-weight: bold;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}