

/* Start:/local/templates/main/components/bitrix/main.register/short/style.css?17708891851043*/
.phone-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 10px;
font-weight:normal;

}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #fc532c;
  background-color: white; /* Белый фон по умолчанию */
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all 0.2s;
}

.radio-custom::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #fc532c; /* Оранжевая точка при выборе */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s;
}

input[type="radio"]:checked + .radio-custom {
  background-color: #fc532c; /* Оранжевый фон только при выборе */
}

input[type="radio"]:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

input[type="radio"] {
  display: none;
}
/* End */
/* /local/templates/main/components/bitrix/main.register/short/style.css?17708891851043 */
