/* ══════════════════════════════════════════
   common.css — 전체 페이지 공통 스타일
   ══════════════════════════════════════════ */

.gradient-text {
    background: linear-gradient(135deg, #0033d2, #0055ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-indigo-600 {
    color: #0033d2 !important;
}
.bg-indigo-600 {
    background-color: #0033d2 !important;
}
.border-indigo-600 {
    border-color: #0033d2 !important;
}


.text-indigo-700  { color: #00259a !important; }
.bg-indigo-700    { background-color: #00259a !important; }
.border-indigo-700 { border-color: #00259a !important; }

.hover\:text-indigo-600:hover  { color: #0033d2 !important; }
.hover\:bg-indigo-600:hover    { background-color: #0033d2 !important; }
.hover\:text-indigo-700:hover  { color: #00259a !important; }
.hover\:bg-indigo-700:hover    { background-color: #00259a !important; }
.rounded-2xl { border-radius: 9999px !important; }
#form .rounded-2xl { border-radius: 1rem !important; }  /* form 내부는 원래대로 */