.social-login-section {
    margin: 20px 0;
}

.social-login-title {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-google {
    background: white;
    color: #333;
}

.btn-google:hover {
    background: #f8f9fa;
}

.btn-kakao {
    background: #FEE500;
    color: #3C1E1E;
    border-color: #FEE500;
}

.btn-kakao:hover {
    background: #FDD835;
}

.btn-naver {
    background: #03C75A;
    color: white;
    border-color: #03C75A;
}

.btn-naver:hover {
    background: #02B350;
}

.btn-social svg {
    flex-shrink: 0;
}
