:root {
    --easy-color: #43cea2;
    --phone-color: #ff7e5f;
    --certificate-color: #654ea3;
}

/*.board-list th {*/
/*    border-top: 0;*/
/*    flex-wrap: wrap;*/
/*    word-break: keep-all;*/
/*}*/

/*.board-list tr {*/
/*    cursor: default !important;*/
/*}*/

/*.board-list tr:last-child td {*/
/*    border-bottom: none;*/
/*}*/

.auth-modal-popup .auth-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    background: white;
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.auth-modal-popup .auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.auth-modal-popup .auth-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.auth-modal-popup .easy-auth .auth-icon {
    background: linear-gradient(135deg, var(--easy-color) 0%, #185a9d 100%);
}

.auth-modal-popup .phone-auth .auth-icon {
    background: linear-gradient(135deg, var(--phone-color) 0%, #feb47b 100%);
}

.auth-modal-popup .certificate-auth .auth-icon {
    background: linear-gradient(135deg, var(--certificate-color) 0%, #da98b4 100%);
}

.auth-modal-popup .auth-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 18px;
}

.auth-modal-popup .auth-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 0;
}

.auth-modal-popup .modal-header {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
}

.auth-modal-popup .modal-title {
    font-weight: 700;
    color: #333;
    text-align: center;
    width: 100%;
    padding: 0 40px;
}

.auth-modal-popup .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.auth-modal-popup .modal-body {
    padding: 25px;
    min-height: 300px;
}

.auth-modal-popup .modal-footer {
    border-top: none;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 30px;
}

.auth-modal-popup .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
}

.auth-modal-popup .btn-cancel {
    background-color: #f0f0f0;
    color: #666;
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
}

.auth-modal-popup .btn-cancel:hover {
    background-color: #e0e0e0;
}

.auth-modal-popup .section-title h1 {
    font-weight: 700;
    margin-bottom: 15px;
}

.auth-modal-popup .section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.auth-modal-popup .sub-title {
    font-weight: 700;
    color: #333;
    margin: 0;
    font-size: 20px;
}


/* 반응형 조정 */
@media (max-width: 768px) {
    .auth-modal-popup .auth-card {
        padding: 20px 10px;
    }

    .auth-modal-popup .modal-body {
        padding: 15px;
    }
}