
/* 핸드폰 번호, 계정명, 인증번호 텍스트 css */
.tel-input{
    display: flex;
    height: 88px;
    column-gap: 6px;
    margin-top: 20px;
    align-items: center; /* ⭐ 세로 정렬 안정 */

    .tel-label{
        height: 48px;
        padding: 0 0px;
        border-radius: 10px;
        border: 0px solid #C9C9C9;
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 24px;
        color: #000;
        white-space: nowrap;
    }

}

/* 셀렉트박스 스타일 */
.tel-select {
    width: 100px; /* 적절한 너비 설정 */
    height: 48px; /* input창과 높이 통일 */
    border: 1px solid #C9C9C9;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 24px; /* 라벨 폰트 크기와 맞춤 */
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    appearance: none; /* 기본 화살표 숨기기(선택사항) */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* 셀렉트박스와 인풋 사이 간격 조정 */
.tel-input {
    column-gap: 10px; /* 요소 간의 간격을 6px에서 10px로 확장 */
}

/* 계정명 하단 안내 문구 스타일 */
.id-notice {
    margin-top: 8px;           /* 입력창과의 간격 */
    margin-left: 166px;        /* 라벨 너비(160px) + 간격(6px)만큼 띄워서 정렬 */
    color: #EF4848;            /* 강조용 빨간색 (기존 포인트 컬러 활용) */
    font-size: 14px;           /* 가독성 좋은 크기 */
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    letter-spacing: -0.02em;
}

/* 특정 클래스의 placeholder 스타일만 변경 */
.id-placeholder-red::placeholder {
    color: #EF4848 !important; /* 요청하신 빨간색 */
    font-size: 15px !important;  /* 요청하신 15px */
    opacity: 1; /* 브라우저 기본 투명도 제거 */
}

/* IE 및 구버전 브라우저 대응 (필요시) */
.id-placeholder-red:-ms-input-placeholder { color: #EF4848; font-size: 15px; }
.id-placeholder-red::-ms-input-placeholder { color: #EF4848; font-size: 15px; }

@keyframes blinkWarning {
  0%   { background-color: #ff4d4f; }
  50%  { background-color: #ff7875; }
  100% { background-color: #ff4d4f; }
}

.blink-btn {
  animation: blinkWarning 0.8s ease-in-out infinite;
  color: #fff;
}

.tooltip-style {
    display: none;            /* 기본적으로 숨김 */
    position: absolute;       /* 부모 div 기준 위치 */
    
    /* 아래 좌표는 버튼 위치에 맞춰서 적절히 수정하세요 */
    top: 60px;               
    left: 580px;
    
    pointer-events: none;     /* 툴팁 때문에 마우스 인식이 방해받지 않도록 설정 */
    z-index: 999;
}