/* --- 1. 배경 및 기본 레이아웃 --- */
.auth-wrapper {
    background-color: #f8fafc;
    width: 100%;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    box-sizing: border-box;
}

/* 네모난 박스 (카드) 디자인 */
.auth-card {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    max-width: 750px;
    padding: 3.5rem 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

/* 헤더 영역 */
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: #64748b;
    font-weight: 500;
}

/* 아이콘 박스 */
.icon-box-orange {
    display: inline-flex;
    padding: 0.75rem;
    background-color: #fff7ed;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.icon-box-orange i {
    width: 2rem;
    height: 2rem;
    color: #e7542e;
}

/* 폼 영역 */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 회원유형 선택 탭 */
.member-type-selector {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.member-type-selector input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
}

.member-type-selector input[type="radio"]:checked {
    border-color: #e7542e;
}

.member-type-selector input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #e7542e;
}

.member-type-tab {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-right: 0.5rem;
}

.member-type-selector input[type="radio"]:checked + .member-type-tab {
    color: #e7542e;
}

.member-type-tab:hover {
    color: #e7542e;
}

.member-type-tab i {
    width: 1rem;
    height: 1rem;
}

/* 입력 행 (flex) */
.input-row {
    position: relative;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* 이메일 필드 전체 */
.email-field {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.email-inputs {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.email-id-wrap {
    min-width: 0;
}

.email-domain-wrap {
    min-width: 0;
}

.email-at {
    font-size: 0.95rem;
    font-weight: 700;
    color: #94a3b8;
    flex-shrink: 0;
    min-width: 1.25rem;
    text-align: center;
}

.email-inputs .input-box-enhanced {
    width: 100%;
    box-sizing: border-box;
}

.email-select {
    padding-left: 0.75rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
}

.email-direct-wrapper {
    position: relative;
}

.email-direct-wrapper .input-box-enhanced {
    padding-right: 2.25rem;
}

.email-direct-back {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.375rem;
    height: 1.375rem;
    border: none;
    background-color: #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    padding: 0;
}

.email-direct-back:hover {
    background-color: #d1d5db;
}

.email-direct-back svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #64748b;
}

.input-flex-1 {
    flex: 1;
}

.input-flex-15 {
    flex: 1.5;
}

/* --- 2. 폼 요소 및 입력창 --- */
.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 0.9rem;
}
.form-label.required::after {
    content: ' *';
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
}
.required-star {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.error-msg {
    position: absolute;
    bottom: -1.25rem;
    left: 0;
    margin: 0;
    font-size: 0.75rem;
    color: #ef4444;
    white-space: nowrap;
}

.input-icon-other {
    position: absolute;
    left: 1rem;
    top: 45%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 1.125rem;
    color: #94a3b8;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.125rem;
    height: 1.125rem;
    color: #94a3b8;
}

.input-box-enhanced {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background-color: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}

.input-box-enhanced:focus {
    border-color: #e7542e;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(231, 84, 46, 0.1);
}

.input-box-car {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background-color: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s;
    box-sizing: border-box;
}

.input-box-car:focus {
    border-color: #e7542e;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(231, 84, 46, 0.1);
}

/* --- 3. 버튼 스타일 --- */
/* 중복확인/인증요청 보조 버튼 */
.btn-check-orange {
    flex-shrink: 0;
    height: 3rem;
    padding: 0 1.25rem;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-check-orange:hover {
    border-color: #e7542e;
    color: #e7542e;
    background-color: #fffaf9;
}

/* --- 인증번호 입력 섹션 --- */
.verify-code-section {
    margin-top: 0.75rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.verify-input-wrapper {
    position: relative;
}

.verify-timer {
    position: absolute;
    right: 1rem;
    top: 45%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    font-weight: 700;
    color: #e7542e;
    font-variant-numeric: tabular-nums;
}

.verify-timer.timer-warning {
    color: #ef4444;
    animation: blink 1s infinite;
}

.verify-timer.timer-expired {
    color: #94a3b8;
    animation: none;
}

.verify-timer.timer-verified {
    color: #22c55e;
    font-size: 0.8rem;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.btn-verify-confirm {
    height: 3rem;
    padding: 0 1.25rem;
    background-color: #e7542e;
    border: none;
    color: #ffffff;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-verify-confirm:hover {
    background-color: #cf4622;
}

.btn-verify-confirm:disabled {
    background-color: #cbd5e1;
    cursor: not-allowed;
}

.car-error {
    color: #ef4444;
    white-space: nowrap;
}

/* 차량 정보 박스 */
.car-info-box {
    padding: 1rem;
    background-color: rgba(255, 247, 237, 0.5);
    border-radius: 1rem;
    border: 1px solid #fed7aa;
}

.label-orange {
    color: #e7542e;
}

.input-orange-border {
    border-color: #fed7aa;
}

.input-orange-border:focus {
    border-color: #e7542e;
}

.hint-text {
    font-size: 0.6875rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

/* 차량 추가/삭제 버튼 */
.car-input-row {
    position: relative;
    padding: 15px 0;
}

.car-input-row:last-child {
    margin-bottom: 0;
}

.car-input-row .input-row {
    align-items: center;
}

/* 비고 입력 행 전체 너비 */
.car-input-row .remark-row {
    width: 100%;
}

.car-input-row .remark-row .remark-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
    position: relative;
}

.car-input-row .remark-row .remark-wrapper .input-box-car {
    width: 100%;
    box-sizing: border-box;
}

.btn-car-add {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e7542e;
    background-color: #fff7ed;
    border-radius: 0.5rem;
    border: 1px dashed #fed7aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.2s;
}

.btn-car-add:hover {
    background-color: #ffedd5;
    border-style: solid;
}

.btn-car-add:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-car-remove {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-car-remove:hover {
    background-color: #fee2e2;
    border-color: #f87171;
}

.btn-car-remove i {
    width: 1rem;
    height: 1rem;
}

/* 라벨 with 카운트 */
.label-with-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.count-text {
    font-size: 0.6875rem;
    color: #94a3b8;
    font-weight: 400;
}

/* 주차장 선택 박스 */
.parking-select-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: #f8fafc;
    border-radius: 0.75rem;
    border: 2px dashed #e2e8f0;
    min-height: 54px;
}

.placeholder-text {
    font-size: 0.75rem;
    color: #94a3b8;
    padding: 0.25rem 0;
    font-style: italic;
    width: 100%;
    text-align: center;
}

/* 주차장 검색 버튼 */
.btn-parking-search {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.625rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e7542e;
    background-color: #fff7ed;
    border-radius: 0.5rem;
    border: 1px solid #fed7aa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: background-color 0.2s;
}

.btn-parking-search:hover {
    background-color: #ffedd5;
}

.icon-small {
    width: 0.75rem;
    height: 0.75rem;
}

/* 약관 동의 박스 */
.terms-box {
    padding: 1rem 1.25rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* 약관 동의 섹션 */
.terms-section {
    padding: 0.375rem 0;
}

.terms-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terms-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.terms-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #e7542e;
    cursor: pointer;
}

.terms-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #334155;
    transition: color 0.2s;
}

.terms-label:hover .terms-text {
    color: #e7542e;
}

.terms-link {
    font-size: 0.75rem;
    color: #94a3b8;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.terms-link:hover {
    color: #e7542e;
}

/* 전체 동의 */
.terms-all-section {
    padding: 0.25rem 0 0.5rem;
}

.terms-all-text {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #1e293b;
}

.terms-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 0.25rem 0;
}

/* 메인 강조 버튼 (#e7542e) */
.btn-login-orange {
    width: 100%;
    padding: 1.125rem;
    background-color: #e7542e;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login-orange:hover {
    background-color: #cf4622;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 84, 46, 0.2);
}

/* --- 4. 선택된 주차장 칩(Chip) 디자인 --- */
#selected-parking-list {
    transition: all 0.3s ease;
    border: 2px dashed #f1f5f9;
}

.parking-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fffaf9;
    border: 1px solid #fbdad0;
    color: #e7542e;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(231, 84, 46, 0.05);
}

.parking-chip button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #fbdad0;
    border-radius: 50%;
    color: #e7542e;
    font-size: 14px;
    transition: all 0.2s;
}

.parking-chip button:hover {
    background: #e7542e;
    color: white;
}

/* 검색 결과 빈 상태 */
.empty-results {
    text-align: center;
    padding: 2.5rem 0;
    color: #94a3b8;
}

/* 검색 아이템 추가 아이콘 */
.add-icon-box {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.search-item:hover .add-icon-box {
    background-color: #e7542e;
}

.add-icon {
    width: 1rem;
    height: 1rem;
    color: #94a3b8;
}

.search-item:hover .add-icon {
    color: white;
}

.search-item:hover .item-name {
    color: #e7542e;
}

/* 빈 상태 */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    color: #cbd5e1;
}

.empty-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.2;
}

.empty-state p {
    font-size: 0.875rem;
    font-weight: 500;
}

/* 주차장 카드 */
.parking-search-card.selected {
    box-shadow: 0 0 0 2px rgba(231, 84, 46, 0.2);
    border-color: #e7542e;
}

.card-content {
    flex: 1;
    overflow: hidden;
}

.card-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.parking-search-card:hover .card-name {
    color: #e7542e;
}

.card-address {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #e7542e;
    margin-left: 0.5rem;
}

/* --- 5. 모달 및 페이지네이션 --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    box-sizing: border-box;
}

.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 800px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    word-break: keep-all;
    animation: modalShow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modal-wide {
    max-width: 800px;
    padding: 0;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.modal-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.modal-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.total-badge {
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-close-btn {
    color: #cbd5e1;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #475569;
}

.modal-close-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.modal-body {
    padding: 2rem;
    background-color: #fbfcfd;
}

/* 모달 검색 */
.modal-search-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.modal-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    outline: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.modal-search-input:focus {
    border-color: #e7542e;
    box-shadow: 0 0 0 4px rgba(231, 84, 46, 0.05);
}

.modal-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #cbd5e1;
    width: 1.25rem;
    height: 1.25rem;
}

/* 검색 결과 그리드 */
.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 320px;
}

@media (min-width: 640px) {
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 페이지네이션 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    margin-top: 2.5rem;
}

/* 주차장 검색 결과 카드 (2열 그리드용) */
.parking-search-card {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.parking-search-card:hover {
    border-color: #e7542e;
    background: #fffaf9;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -5px rgba(231, 84, 46, 0.1);
}

.parking-search-card .thumb {
    width: 52px; height: 52px;
    background: #f8fafc;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; font-weight: 800;
    color: #cbd5e1;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

/* 페이지네이션 버튼 */
.page-btn {
    min-width: 36px; height: 36px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 13px; font-weight: 700;
    color: #94a3b8;
    transition: all 0.2s;
}

.page-btn.active {
    background: #e7542e;
    color: white;
    box-shadow: 0 4px 10px rgba(231, 84, 46, 0.2);
}

/* --- 6. 애니메이션 및 유틸리티 --- */
@keyframes modalShow {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.icon-orange {
    stroke: #e7542e;
    color: #e7542e;
}

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }

/* 차종 선택 드롭박스 스타일 */
select.input-box-enhanced {
    font-family: inherit;
}

/* 하단 링크 */
.auth-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
}

.register-link-orange {
    color: #e7542e;
    font-weight: 700;
    margin-left: 0.25rem;
}

.register-link-orange:hover {
    text-decoration: underline;
}

/* hidden 유틸리티 */
.hidden {
    display: none;
}

/* --- 8. 비밀번호 토글 버튼 --- */
.input-with-toggle {
    padding-right: 3rem;
    box-sizing: border-box;
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #e7542e;
}

.toggle-icon {
    width: 1.125rem;
    height: 1.125rem;
}

/* --- 7. 주차장 검색 드롭다운 --- */
.parking-search-wrapper {
    position: relative;
}

.parking-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 4px;
}

.parking-dropdown-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s;
}

.parking-dropdown-item:last-child {
    border-bottom: none;
}

.parking-dropdown-item:hover {
    background-color: #fff7ed;
}

.parking-dropdown-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.parking-dropdown-address {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
}

.parking-dropdown-empty {
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* 주차장 선택 완료 상태 */
.parking-search-input.parking-selected {
    background-color: #fff7ed;
    border-color: #fb923c;
    color: #c2410c;
}

/* 주차장 선택 초기화 버튼 */
.parking-clear-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    border: none;
    background-color: #fed7aa;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    padding: 0;
}

.parking-clear-btn:hover {
    background-color: #fdba74;
}

.parking-clear-btn svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #c2410c;
}

.swal2-popup {
    font-family: 'Pretendard', sans-serif !important; /* 폰트 통일 */
    border-radius: 20px !important;
}

.swal2-styled.swal2-confirm {
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3) !important; /* 버튼 그림자 */
}

@media (max-width: 480px) {
    .auth-card { max-width: 100%; padding: 50px 15px;border-radius: 8px; }

    .input-box-enhanced { padding: 10px 20px 10px 40px;  }
    .email-select { padding-left: 10px; }
    .email-field { flex-wrap: wrap; }
    .email-inputs { width: 100%; }
    .email-field .btn-check-orange { width: 100%;}

    .car-input-row .input-row { flex-direction: column; }
    .btn-car-remove { position: absolute; top: -10px; right: -5px; width: 28px; min-width: 0; height: 28px; }
    .btn-car-remove svg { width: 20px; height: 20px; }

    .terms-box { padding: 10px; font-size: 14px; }

    .modal-header { padding: 10px 10px 10px 20px; }
    .modal-body { padding: 20px; }
}