.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    position: relative;
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
    overflow: hidden;
}

.social-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.social-btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    z-index: 1;
}

.social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-btn span {
    font-size: 15px;
    font-weight: 500;
}

/* 카카오 버튼 스타일 */
.kakao-btn {
    background-color: #FEE500;
}

.kakao-btn .social-btn-content {
    color: #000000;
}

.kakao-btn:hover {
    background-color: #FDD835;
    box-shadow: 0 2px 8px rgba(254, 229, 0, 0.3);
}

/* 구글 버튼 스타일 */
.google-btn {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.google-btn .social-btn-content {
    color: #3c4043;
}

.google-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 반응형 조정 */
@media (max-width: 768px) {
    .social-btn {
        height: 44px;
        border-radius: 22px;
    }
    
    .social-btn span {
        font-size: 14px;
    }
    
    .social-btn img {
        width: 18px;
        height: 18px;
    }
} 